|
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: 1501 (0x5dd) 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/statgen/Makefile«
# Stats generation stuff # ############################################################ # # @(#) $Header: /cs/research/pp/hubris/pp-beta/Tools/statgen/RCS/Makefile,v 5.0 90/09/20 16:31:26 pp Exp Locker: pp $ # # $Log: Makefile,v $ # Revision 5.0 90/09/20 16:31:26 pp # rcsforce : 5.0 public release # # ############################################################ # # Definitions # ############################################################ SRCS = statp.c OBJS = statp.o HEADERS = ../../h LIBPP = ../../Lib/libpp.a LIBS = $(LIBPP) $(LIBSYS) CFLAGS = $(CCOPTIONS) -I$(HEADERS) LDFLAGS = $(LDOPTIONS) LLFLAGS = $(LINTFLAGS) -I$(HEADERS) LINTLIBS = ../../Lib/llib-lpp.ln $(LINTISODE) ############################################################ # # Building Rules # ############################################################ default: statp statp: xstatp xstatp: $(OBJS) $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) install: inst-statp inst-statp: $(TOOLDIR)/statp $(TOOLDIR)/statp: xstatp -$(BACKUP) $@ zxstatp rm -f $@ $(INSTALL) xstatp $@ -$(CHMOD) $(PGMPROT) $@ -$(CHOWN) $(PPUSER) $@ -@ls -ls $@ -@echo "statp tool installed normally"; echo "" clean: tidy tidy: rm -f $(OBJS) core a.out Makefile.old xstatp lint: l-stat l-stat: $(SRCS) $(LINT) $(LLFLAGS) $(SRCS) depend: $(DEPEND) -I$(HEADERS) $(SRCS) lex.o: y.tab.h ############################################################ # # End of Building Rules # ############################################################