Changeset 555 for trunk/gsdl


Ignore:
Timestamp:
1999-09-09T11:16:51+12:00 (25 years ago)
Author:
cs025
Message:

more configuration stuff

Location:
trunk/gsdl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/Makefile.in

    r552 r555  
    77CFLAGS = @CFLAGS@
    88LIBS   = @LIBS@
    9 MDEFINES =
     9MDEFINES =
     10TOPSRC = `pwd`
    1011
    1112COMPILE = $(CC) -c
    1213
    13 SOURCES = grb.c
     14SOURCES =
    1415
    15 OBJECTS = grb.o
     16OBJECTS =
    1617
    1718ALLFILES = $(OBJECTS)
    1819
    19 SUBDIRS = lib src/db2txt src/hashfile src/recpt src/txt2db
     20SUBDIRS = lib src/colservr src/db2txt src/hashfile src/recpt src/txt2db \
     21          collect/cstr/src/recpt collect/niupepa/src/recpt
    2022
    2123all:
     24    sed s^XXXX^$(TOPSRC)^ lib/gsdlhome.h.example > lib/gsdlhome.h
    2225    for subdir in $(SUBDIRS); do \
    2326      echo making $@ in $$subdir; \
     
    2528    done
    2629
    27 grb: $(ALLFILES)
     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
  • trunk/gsdl/lib/Makefile.in

    r552 r555  
    1616RANLIB = @RANLIB@
    1717
    18 
    1918COMPILE = $(CC) -c $(CCFLAGS) $(DEFS) $(INCLUDES)
    2019
     
    3130HEADERS = \
    3231  cfgread.h      fileutil.h     gsdlunicode.h  text_t.h \
    33   display.h      gsdlconf.h     site.h         gsdltimes.h
     32  display.h      gsdlconf.h     gsdltimes.h
    3433
    3534SOURCES = \
     
    6160
    6261# DO NOT DELETE
    63 cfgread.o: cfgread.cpp cfgread.h gsdlconf.h site.h text_t.h
    64 fileutil.o: fileutil.cpp fileutil.h text_t.h gsdlconf.h site.h
    65 text_t.o: text_t.cpp text_t.h gsdlconf.h site.h
    66 display.o: display.cpp display.h gsdlconf.h site.h text_t.h \
     62cfgread.o: cfgread.cpp cfgread.h gsdlconf.h text_t.h
     63fileutil.o: fileutil.cpp fileutil.h text_t.h gsdlconf.h
     64text_t.o: text_t.cpp text_t.h gsdlconf.h
     65display.o: display.cpp display.h gsdlconf.h text_t.h \
    6766 gsdlunicode.h
    6867gsdlunicode.o: gsdlunicode.cpp gsdlunicode.h text_t.h gsdlconf.h \
    6968 fileutil.h
    70 gsdltimes.o: gsdltimes.cpp gsdltimes.h gsdlconf.h site.h
     69gsdltimes.o: gsdltimes.cpp gsdltimes.h gsdlconf.h
    7170
    7271
Note: See TracChangeset for help on using the changeset viewer.