source: trunk/gsdl/src/mgpp/Makefile.in@ 13111

Last change on this file since 13111 was 12916, checked in by kjdon, 18 years ago

changed the comment to say MGPP instead of GNU tar

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 3.2 KB
Line 
1# Main Makefile for MGPP
2# Copyright (C) 1994, 1995 Free Software Foundation, Inc.
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 2, or (at your option)
7# any later version.
8
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18PACKAGE = @PACKAGE@
19VERSION = @VERSION@
20
21
22@SET_MAKE@
23SHELL = /bin/sh
24VPATH = @srcdir@
25exec_prefix = @exec_prefix@
26prefix = @prefix@
27srcdir = @srcdir@
28
29
30CC = @CC@
31CPP = @CXX@
32CFLAGS = @CFLAGS@ -ansi
33INSTALL = @INSTALL@
34INSTALL_DATA = @INSTALL_DATA@
35INSTALL_PROGRAM = @INSTALL_PROGRAM@
36LDFLAGS = @LDFLAGS@
37LIBS = @LIBS@
38TOUCH = echo timestamp >
39
40bindir = $(exec_prefix)/bin
41infodir = $(prefix)/info
42libexecdir = $(exec_prefix)/libexec
43
44MDEFINES =
45#CC='$(CC)' CFLAGS='$(CFLAGS)' LDFLAGS='$(LDFLAGS)' LIBS='$(LIBS)' \
46#prefix='$(prefix)' exec_prefix='$(exec_prefix)' \
47#bindir='$(bindir)' libexecdir='$(libexecdir)' \
48#infodir='$(infodir)' infodir='$(infodir)' libexecdir='$(libexecdir)'
49
50SUBDIRS = lib text
51
52
53.SUFFIXES:
54
55all install uninstall execinstall execuninstall maninstall manuninstall:
56#config.h
57 for subdir in $(SUBDIRS); do \
58 echo making $@ in $$subdir; \
59 (cd $$subdir && $(MAKE) $(MDEFINES) $@) || exit 1; \
60 done
61
62# Have not written any texinfo files for the documentation yet
63#info dvi:
64# cd doc && $(MAKE) $@
65
66mostlyclean: mostlyclean-recursive mostlyclean-local
67
68clean: clean-recursive clean-local
69
70# toplevel Makefile does our subdirs already (jrm21)
71#distclean: distclean-recursive distclean-local
72# rm config.status
73distclean:
74
75maintainer-clean: maintainer-clean-recursive maintainer-clean-local
76 rm config.status
77
78mostlyclean-recursive clean-recursive distclean-recursive \
79maintainer-clean-recursive:
80 for subdir in $(SUBDIRS); do \
81 target=`echo $@ | sed 's/-recursive//'`; \
82 echo making $$target in $$subdir; \
83 (cd $$subdir && $(MAKE) $$target) || exit 1; \
84 done
85
86mostlyclean-local:
87
88clean-local: mostlyclean-local
89
90distclean-local: clean-local
91 rm -f Makefile config.cache config.h config.log stamp-h
92
93maintainer-clean-local: distclean-local
94 @echo "This command is intended only for maintainers to use;"
95 @echo "rebuilding the deleted files may require special tools."
96
97# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
98
99distdir = $(PACKAGE)-$(VERSION)
100
101distname = $(distdir)
102
103DISTFILES = \
104INSTALL.mg INSTALL README README.port COPYING MODIFICATIONS about_mg.html \
105Makefile.in acconfig.h aclocal.m4 configure.in install-sh mkinstalldirs \
106config.guess config.sub \
107config.h.in configure stamp-h.in
108
109#-----------------------------------------------------------------
110
111# Tell versions [3.59,3.63) of GNU make not to export all variables.
112# Otherwise a system limit (for SysV at least) may be exceeded.
113.NOEXPORT:
114
Note: See TracBrowser for help on using the repository browser.