|
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: 2125 (0x84d) 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/splat/Makefile«
# splat Makefile # ############################################################ # # @(#) $Header: /cs/research/pp/hubris/pp-beta/Tools/splat/RCS/Makefile,v 5.0 90/09/20 16:31:06 pp Exp Locker: pp $ # # $Log: Makefile,v $ # Revision 5.0 90/09/20 16:31:06 pp # rcsforce : 5.0 public release # # ############################################################ # # Definitions # ############################################################ SRCS = splat.c ps2pe.c OBJS = splat.o ps2pe.o # DO NOT DELETE THIS LINE MAKE DEFINE NEEDS IT HEADERS = ../../h LIBPP = ../../Lib/libpp.a LDFLAGS = $(LDOPTIONS) $(LLF) CFLAGS = $(CCOPTIONS) $(LCF) -I$(HEADERS) LLFLAGS = $(LINTFLAGS) -I$(HEADERS) -u LINTLIBS = ../../Lib/llib-lpp.ln $(LINTISODE) ############################################################ # # Building Rules # ############################################################ PROGS = xsplat default: $(PROGS) all: default lint: l-splat install: inst-dir inst-splat inst-dir: $(TOOLDIR) splat: xsplat xsplat: $(OBJS) $(LIBPP) $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBPP) $(LIBSYS) l-splat: $(SRCS) $(LINT) $(LINTFLAGS) $(SRCS) $(LINTLIBS) inst-splat: $(TOOLDIR)/splat $(TOOLDIR)/splat: xsplat -$(BACKUP) $@ zxsplat rm -f $@ $(INSTALL) xsplat $@ -$(CHMOD) $(PGMPROT) $@ -$(CHOWN) $(PPUSER) $@ -@ls -ls $@ -@echo "splat tool installed normally"; echo "" clean: tidy rm -f $(OBJS) tidy: rm -f core.* $(PROGS) zx* *.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 splat.o: splat.c splat.o: ../../h/util.h splat.o: ../../h/config.h splat.o: ../../h/ll_log.h splat.o: splat.c splat.o: ../../h/util.h splat.o: ../../h/config.h splat.o: ../../h/ll_log.h # DEPENDENCIES MUST END AT END OF FILE # IF YOU PUT STUFF HERE IT WILL GO AWAY # see make depend above