|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: M T
Length: 1104 (0x450) Types: TextFile Names: »Makefile«
└─⟦a05ed705a⟧ Bits:30007078 DKUUG GNU 2/12/89 └─⟦0befd2614⟧ »./gdbm-0.8.tar.Z« └─⟦b993d2893⟧ └─⟦this⟧ »gdbm/Makefile«
# Makefile for dbm. # CFLAGS = -g -DRANDOM_HASH OFILES = bucket.o dbminit.o delete.o falloc.o fetch.o findkey.o global.o \ hash.o seq.o store.o gdbmopen.o gdbmdelete.o gdbmfetch.o gdbmseq.o \ gdbmstore.o update.o gdbmclose.o gdbmreorg.o version.o LIBDIR = /usr/lib all: @echo "\"make gdbm.a\" to make the library" @echo "\"make install\" to install the library" @echo "\"make test\" to make the test program" gdbm.a: $(OFILES) rm -f gdbm.a ar q gdbm.a $(OFILES) ranlib gdbm.a install: gdbm.a install -c -m 644 gdbm.a $(LIBDIR)/libgdbm.a test: test.o $(OFILES) gdbm.a cc -g -o test test.o gdbm.a gdbm.o: gdbm.h bucket.o: gdbm.h gdbminit.o: gdbm.h extern.h delete.o: gdbm.h extern.h falloc.o: gdbm.h fetch.o: gdbm.h extern.h findkey.o: gdbm.h global.o: gdbm.h hash.o: gdbm.h extern.h seq.o: gdbm.h extern.h store.o: gdbm.h extern.h test.o: gdbm.h extern.h gdbmopen.o: gdbm.h gdbmerrno.h gdbmdelete.o: gdbm.h gdbmerrno.h gdbmfetch.o: gdbm.h gdbmerrno.h gdbmseq.o: gdbm.h gdbmstore.o: gdbm.h gdbmerrno.h update.o: gdbm.h gdbmclose.o: gdbm.h gdbmreorg.o: gdbm.h gdbmerrno.h version.o: