Last change
on this file since 4641 was
4481,
checked in by maronga, 5 years ago
|
Bugfix for copyright updates in document_changes; copyright update applied to all files
|
-
Property svn:keywords set to
Id
|
File size:
1.4 KB
|
Rev | Line | |
---|
[2696] | 1 | #> @file src/Makefile |
---|
[2718] | 2 | #------------------------------------------------------------------------------# |
---|
| 3 | # This file is part of the PALM model system. |
---|
[2696] | 4 | # |
---|
[2718] | 5 | # PALM is free software: you can redistribute it and/or modify it under the |
---|
| 6 | # terms of the GNU General Public License as published by the Free Software |
---|
| 7 | # Foundation, either version 3 of the License, or (at your option) any later |
---|
[2696] | 8 | # version. |
---|
| 9 | # |
---|
[2718] | 10 | # PALM is distributed in the hope that it will be useful, but WITHOUT ANY |
---|
| 11 | # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR |
---|
| 12 | # A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
---|
[2696] | 13 | # |
---|
| 14 | # You should have received a copy of the GNU General Public License along with |
---|
| 15 | # PALM. If not, see <http://www.gnu.org/licenses/>. |
---|
| 16 | # |
---|
[4481] | 17 | # Copyright 2017-2020 Leibniz Universitaet Hannover |
---|
| 18 | # Copyright 2017-2020 Deutscher Wetterdienst Offenbach |
---|
[2718] | 19 | #------------------------------------------------------------------------------# |
---|
[2696] | 20 | # |
---|
| 21 | # Current revisions: |
---|
| 22 | # ----------------- |
---|
| 23 | # |
---|
| 24 | # |
---|
| 25 | # Former revisions: |
---|
| 26 | # ----------------- |
---|
| 27 | # $Id: Makefile 4481 2020-03-31 18:55:54Z suehring $ |
---|
| 28 | # Initial revision |
---|
| 29 | # |
---|
| 30 | # |
---|
| 31 | # |
---|
| 32 | # Authors: |
---|
| 33 | # -------- |
---|
| 34 | # @author Eckhard Kadasch |
---|
| 35 | # |
---|
| 36 | # Description: |
---|
| 37 | # ------------ |
---|
| 38 | #> This makefile may be used to generate index files using ctags for easy source |
---|
| 39 | #> code navigation in text editors. |
---|
| 40 | #------------------------------------------------------------------------------! |
---|
| 41 | .PHONY: tags clean |
---|
| 42 | |
---|
| 43 | tags: |
---|
| 44 | ctags *.f90 |
---|
| 45 | |
---|
| 46 | clean: |
---|
| 47 | rm -f tags |
---|
| 48 | |
---|
Note: See
TracBrowser
for help on using the repository browser.