|
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: 1494 (0x5d6) 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/Uip/resend/Makefile«
# resend utility # ############################################################ # # @(#) $Header: /cs/research/pp/hubris/pp-beta/Uip/resend/RCS/Makefile,v 5.0 90/09/20 16:34:40 pp Exp Locker: pp $ # # $Log: Makefile,v $ # Revision 5.0 90/09/20 16:34:40 pp # rcsforce : 5.0 public release # # ############################################################ # # Definitions # ############################################################ SRCS = resend.c OBJS = resend.o HEADERS = ../../h LIBPP = ../../Lib/libpp.a CFLAGS = $(CCOPTIONS) -I$(HEADERS) LDFLAGS = $(LDOPTIONS) LLFLAGS = $(LINTFLAGS) -I$(HEADERS) LINTLIBS = ../../Lib/llib-lpp.ln $(LINTISODE) ############################################################ # # Building Rules # ############################################################ default: resend resend: xresend xresend: $(OBJS) $(LIBPP) $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBPP) $(LIBSYS) install: inst-resend inst-resend: $(USRBINDIR)/resend $(USRBINDIR)/resend: xresend -$(BACKUP) $@ zxresend rm -f $@ $(INSTALL) xresend $@ -$(CHMOD) $(PGMPROT) $@ -$(CHOWN) $(PPUSER) $@ -@ls -ls $@ -@echo "Resend installed normally"; echo "" clean: tidy tidy: rm -f $(OBJS) core a.out Makefile.old x* z* lint: l-resend l-resend: $(SRCS) $(LINT) $(LLFLAGS) $(SRCS) $(LINTLIBS) depend: $(DEPEND) -I$(HEADERS) $(SRCS) ############################################################ # # End of Building Rules # ############################################################