source: trunk/Makefile_old @ 1089

Revision 1060, 1.4 KB checked in by Pete Jemian, 3 months ago (diff)

fixes #216 (updated copyrights to 2012, renamed all to NIAC ownership

  • Property svn:eol-style set to native
  • Property svn:keywords set to Date Revision Author HeadURL Id
Line 
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
36SUBDIRS = schema manual
37
38.PHONY: subdirs $(SUBDIRS)
39
40subdirs: $(SUBDIRS)
41
42$(SUBDIRS):
43        $(MAKE) -C $@
44
45manual: 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
Note: See TracBrowser for help on using the repository browser.