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