source: trunk/gsdl/Makefile.in@ 552

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

added configure stuff

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 407 bytes
Line 
1PACKAGE = @PACKAGE@
2VERSION = @VERSION@
3
4@SET_MAKE@
5CC = @CC@
6CPP = @CXX@
7CFLAGS = @CFLAGS@
8LIBS = @LIBS@
9MDEFINES =
10
11COMPILE = $(CC) -c
12
13SOURCES = grb.c
14
15OBJECTS = grb.o
16
17ALLFILES = $(OBJECTS)
18
19SUBDIRS = lib src/db2txt src/hashfile src/recpt src/txt2db
20
21all:
22 for subdir in $(SUBDIRS); do \
23 echo making $@ in $$subdir; \
24 (cd $$subdir && $(MAKE) $(MDEFINES) $@) || exit 1; \
25 done
26
27grb: $(ALLFILES)
Note: See TracBrowser for help on using the repository browser.