| 1 | # File: Makefile |
|---|
| 2 | |
|---|
| 3 | # NeXus - Neutron and X-ray Common Data Format |
|---|
| 4 | # |
|---|
| 5 | # Copyright (C) 2008-2012 NeXus International Advisory Committee (NIAC) |
|---|
| 6 | # |
|---|
| 7 | # This library is free software; you can redistribute it and/or |
|---|
| 8 | # modify it under the terms of the GNU Lesser General Public |
|---|
| 9 | # License as published by the Free Software Foundation; either |
|---|
| 10 | # version 3 of the License, or (at your option) any later version. |
|---|
| 11 | # |
|---|
| 12 | # This library is distributed in the hope that it will be useful, |
|---|
| 13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|---|
| 15 | # Lesser General Public License for more details. |
|---|
| 16 | # |
|---|
| 17 | # You should have received a copy of the GNU Lesser General Public |
|---|
| 18 | # License along with this library; if not, write to the Free Software |
|---|
| 19 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|---|
| 20 | # |
|---|
| 21 | # For further information, see http://www.nexusformat.org |
|---|
| 22 | |
|---|
| 23 | ########### SVN repository information ################### |
|---|
| 24 | # $Date$ |
|---|
| 25 | # $Author$ |
|---|
| 26 | # $Revision$ |
|---|
| 27 | # $HeadURL$ |
|---|
| 28 | # $Id$ |
|---|
| 29 | ########### SVN repository information ################### |
|---|
| 30 | |
|---|
| 31 | # purpose: |
|---|
| 32 | # build resources in NeXus definitions tree |
|---|
| 33 | |
|---|
| 34 | # ref: http://www/gnu.org/software/make/manual/make.html |
|---|
| 35 | |
|---|
| 36 | SUBDIRS = schema manual |
|---|
| 37 | |
|---|
| 38 | .PHONY: subdirs $(SUBDIRS) |
|---|
| 39 | |
|---|
| 40 | subdirs: $(SUBDIRS) |
|---|
| 41 | |
|---|
| 42 | $(SUBDIRS): |
|---|
| 43 | $(MAKE) -C $@ |
|---|
| 44 | |
|---|
| 45 | manual: schema |
|---|
| 46 | |
|---|
| 47 | |
|---|
| 48 | # What about rules for "clean" and other things? |
|---|
| 49 | # For the future, this will also build the |
|---|
| 50 | # release version distribution kits of the definitions. |
|---|
| 51 | |
|---|