source: trunk/gsdl/src/getpw/Makefile.in@ 2999

Last change on this file since 2999 was 2999, checked in by jrm21, 22 years ago

Need to use namespace for gcc3. We now #include gsdlconf as well, so needed
to add gsdlhome/lib to includes.

  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
Line 
1###########################################################################
2#
3# Makefile -- Makefile for getpw
4# A component of the Greenstone digital library software
5# from the New Zealand Digital Library Project at the
6# University of Waikato, New Zealand.
7#
8# Copyright (C) 2000 The New Zealand Digital Library Project
9#
10# This program is free software; you can redistribute it and/or modify
11# it under the terms of the GNU General Public License as published by
12# the Free Software Foundation; either version 2 of the License, or
13# (at your option) any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program; if not, write to the Free Software
22# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23#
24###########################################################################
25
26
27AR = ar
28CC = @CC@
29CFLAGS = @CFLAGS@
30CXX = @CXX@
31CXXFLAGS = @CXXFLAGS@
32DEFS = @DEFS@
33RANLIB = @RANLIB@
34# need to include config.h
35INCLUDES = -I../.. -I../../lib
36LDFLAGS = @LDFLAGS@
37DPLIBS =
38LIBS = @LIBS@
39GSDLOS = @gsdlos@
40INSTALL = @INSTALL@
41
42LINK = $(CXX) $(LDFLAGS) -o $@
43
44.SUFFIXES:
45.SUFFIXES: .c .o
46.c.o:
47 $(CC) -c $(DEFS) $(INCLUDES) $(CFLAGS) $<
48
49.SUFFIXES: .cpp .o
50.cpp.o:
51 $(CXX) -c $(DEFS) $(INCLUDES) $(CXXFLAGS) $<
52
53HEADERS =
54
55SOURCES = getpw.cpp
56
57OBJECTS = getpw.o
58
59EXEC = getpw
60
61all : $(EXEC)
62
63install: $(EXEC)
64 $(INSTALL) -d ../../bin/$(GSDLOS)
65 $(INSTALL) -m 755 -s $(EXEC) ../../bin/$(GSDLOS)
66
67distclean:
68 rm -f $(OBJECTS) $(EXEC) Makefile
69
70clean:
71 rm -f $(OBJECTS) $(EXEC)
72
73depend:
74 makedepend -Y -- $(DEFS) $(INCLUDES) $(CCFLAGS) -- $(SOURCES)
75
76
77# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
78
79GETPW_OBJS = getpw.o
80
81getpw: $(GETPW_OBJS) $(DPLIBS)
82 $(LINK) $(GETPW_OBJS) $(LIBS)
83
Note: See TracBrowser for help on using the repository browser.