|
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: 1995 (0x7cb) 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/ntail/Makefile«
# ntail - log watcher... # ############################################################ # # @(#) $Header: /cs/research/pp/hubris/pp-beta/Tools/ntail/RCS/Makefile,v 5.0 90/09/20 16:30:07 pp Exp Locker: pp $ # # $Log: Makefile,v $ # Revision 5.0 90/09/20 16:30:07 pp # rcsforce : 5.0 public release # # ############################################################ # # Definitions # ############################################################ SRCS = entryfuncs.c miscfuncs.c ntail.c OBJS = entryfuncs.o miscfuncs.o ntail.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 = ntail default: $(PROGS) ntail: xntail xntail: $(OBJS) $(CC) $(LDFLAGS) -o $@ $(OBJS) install: inst-dir inst-ntail inst-ntail: $(TOOLDIR)/ntail $(TOOLDIR)/ntail: xntail -$(BACKUP) $@ zxntail rm -f $@ $(INSTALL) xntail $@ -$(CHMOD) $(PGMPROT) $@ -$(CHOWN) $(PPUSER) $@ -@ls -ls $@ -@echo "ntail installed correctly"; echo "" inst-dir: $(TOOLDIR) lint: $(LINT) $(LLFLAGS) $(SRCS) $(LINTLIBS) clean: tidy rm -f $(OBJS) tidy: rm -f core* $(PROGS) zxntail xntail *.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 entryfuncs.o: entryfuncs.c entryfuncs.o: ./ntail.h miscfuncs.o: miscfuncs.c miscfuncs.o: ./ntail.h ntail.o: ntail.c ntail.o: ./ntail.h # DEPENDENCIES MUST END AT END OF FILE # IF YOU PUT STUFF HERE IT WILL GO AWAY # see make depend above