|
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: 2082 (0x822) 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/bin2ascii/Makefile«
# bin2ascii Makefile # ############################################################ # # @(#) $Header: /cs/research/pp/hubris/pp-beta/Tools/bin2ascii/RCS/Makefile,v 5.0 90/09/20 16:24:04 pp Exp Locker: pp $ # # $Log: Makefile,v $ # Revision 5.0 90/09/20 16:24:04 pp # rcsforce : 5.0 public release # # ############################################################ # # Definitions # ############################################################ SRCS = bin2ascii.c bin2ascii.c OBJS = bin2ascii.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 = xbin2ascii default: $(PROGS) all: default lint: l-bin2ascii install: inst-dir inst-bin2ascii inst-dir: $(TOOLDIR) bin2ascii: xbin2ascii xbin2ascii: bin2ascii.o $(LIBPP) $(CC) $(LDFLAGS) -o $@ bin2ascii.o $(LIBPP) $(LIBSYS) l-bin2ascii: bin2ascii.c $(LINT) $(LINTFLAGS) bin2ascii.c $(LINTLIBS) inst-bin2ascii: $(TOOLDIR)/bin2ascii $(TOOLDIR)/bin2ascii: xbin2ascii -$(BACKUP) $@ zxbin2ascii rm -f $@ $(INSTALL) xbin2ascii $@ -$(CHMOD) $(PGMPROT) $@ -$(CHOWN) $(PPUSER) $@ -@ls -ls $@ -@echo "bin2ascii 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 bin2ascii.o: bin2ascii.c bin2ascii.o: bin2ascii.c # DEPENDENCIES MUST END AT END OF FILE # IF YOU PUT STUFF HERE IT WILL GO AWAY # see make depend above