|
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: 2216 (0x8a8) Types: TextFile Names: »Makefile«
└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0 └─⟦dc59850a2⟧ »EurOpenD22/pp5.0/pp-5.tar.Z« └─⟦e5a54fb17⟧ └─⟦this⟧ »pp-5.0/Tools/dbmbuild/Makefile«
# Build the PP database # ############################################################ # # @(#) $Header: /cs/research/pp/hubris/pp-beta/Tools/dbmbuild/RCS/Makefile,v 5.0 90/09/20 16:26:06 pp Exp Locker: pp $ # # $Log: Makefile,v $ # Revision 5.0 90/09/20 16:26:06 pp # rcsforce : 5.0 public release # # ############################################################ # # Definitions # ############################################################ SRCS = dbmbuild.c OBJS = dbmbuild.o # DO NOT DELETE THIS LINE MAKE DEFINE NEEDS IT HEADERS = ../../h LIBPP = ../../Lib/libpp.a CFLAGS = $(CCOPTIONS) $(LCF) -I$(HEADERS) LDFLAGS = $(LDOPTIONS) $(LLF) LLFLAGS = $(LINTFLAGS) -I$(HEADERS) -u LINTLIBS = ../../Lib/llib-lpp.ln $(LINTISODE) ############################################################ # # Building Rules # ############################################################ PROGS = xdbmbuild default: $(PROGS) dbmbuild: xdbmbuild xdbmbuild: dbmbuild.o $(LIBPP) $(CC) $(LDFLAGS) -o $@ dbmbuild.o $(LIBPP) $(LIBSYS) install: inst-dir inst-dbmbuild inst-dbmbuild: $(CMDDIR)/dbmbuild $(CMDDIR)/dbmbuild: xdbmbuild -$(BACKUP) $@ zxdbmbuild rm -f $@ $(INSTALL) xdbmbuild $@ -$(CHMOD) $(PGMPROT) $@ -$(CHOWN) $(PPUSER) $@ -@ls -ls $@ -@echo "dbmbuild installed normally"; echo "" inst-dir: $(CMDDIR) lint: $(LINT) $(LLFLAGS) $(SRCS) $(LINTLIBS) clean: tidy rm -f $(OBJS) tidy: rm -f core $(PROGS) zxdbmbuild *.old *.BAK depend: $(DEPEND) -I$(HEADERS) $(SRCS) define: $(DEFINE) Makefile ############################################################ # # End of building rules # ############################################################ # DO NOT DELETE THIS LINE MAKE DEPEND NEEDS IT # Dependencies follow dbmbuild.o: dbmbuild.c dbmbuild.o: ../../h/head.h dbmbuild.o: ../../h/util.h dbmbuild.o: ../../h/config.h dbmbuild.o: ../../h/ll_log.h dbmbuild.o: ../../h/retcode.h dbmbuild.o: ../../h/util.h dbmbuild.o: ../../h/chan.h dbmbuild.o: ../../h/table.h dbmbuild.o: ../../h/list_bpt.h dbmbuild.o: ../../h/dbase.h dbmbuild.o: ../../h/config.h # DEPENDENCIES MUST END AT END OF FILE # IF YOU PUT STUFF HERE IT WILL GO AWAY # see make depend above