source: trunk/gsdl/Makefile.in@ 555

Last change on this file since 555 was 555, checked in by cs025, 25 years ago

more configuration stuff

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 681 bytes
Line 
1PACKAGE = @PACKAGE@
2VERSION = @VERSION@
3
4@SET_MAKE@
5CC = @CC@
6CPP = @CXX@
7CFLAGS = @CFLAGS@
8LIBS = @LIBS@
9MDEFINES =
10TOPSRC = `pwd`
11
12COMPILE = $(CC) -c
13
14SOURCES =
15
16OBJECTS =
17
18ALLFILES = $(OBJECTS)
19
20SUBDIRS = lib src/colservr src/db2txt src/hashfile src/recpt src/txt2db \
21 collect/cstr/src/recpt collect/niupepa/src/recpt
22
23all:
24 sed s^XXXX^$(TOPSRC)^ lib/gsdlhome.h.example > lib/gsdlhome.h
25 for subdir in $(SUBDIRS); do \
26 echo making $@ in $$subdir; \
27 (cd $$subdir && $(MAKE) $(MDEFINES) $@) || exit 1; \
28 done
29
30clean:
31 rm lib/gsdlhome.h
32 for subdir in $(SUBDIRS); do \
33 echo cleaning $@ in $$subdir; \
34 (cd $$subdir && $(MAKE) clean) || exit 1; \
35 done
36
37
38
Note: See TracBrowser for help on using the repository browser.