|
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: 1769 (0x6e9) 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/mkpasswd/Makefile«
# Generate encoded/encrypted passwds # ############################################################ # # @(#) $Header: /cs/research/pp/hubris/pp-beta/Tools/mkpasswd/RCS/Makefile,v 5.0 90/09/20 16:27:34 pp Exp Locker: pp $ # # $Log: Makefile,v $ # Revision 5.0 90/09/20 16:27:34 pp # rcsforce : 5.0 public release # # ############################################################ # # Definitions # ############################################################ SRCS = mkpasswd.c OBJS = mkpasswd.o # DO NOT DELETE THIS LINE MAKE DEFINE NEEDS IT HEADERS = ../../h LIBPP = ../../Lib/libpp.a CFLAGS = $(CCOPTIONS) $(LCF) -I$(HEADERS) LDFLAGS = $(LDOPTIONS) $(LLF) LLFLAGS = $(LINTFLAGS) -I$(HEADERS) -u LINTLIBS = ../../Lib/llib-lpp.ln $(LINTISODE) ############################################################ # # Building Rules # ############################################################ PROGS = xmkpasswd default: $(PROGS) mkpasswd: xmkpasswd xmkpasswd: $(OBJS) $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBSYS) install: inst-dir inst-mkpasswd inst-mkpasswd: $(TOOLDIR)/mkpasswd $(TOOLDIR)/mkpasswd: xmkpasswd -$(BACKUP) $@ zxmkpasswd rm -f $@ $(INSTALL) xmkpasswd $@ -$(CHMOD) $(PGMPROT) $@ -$(CHOWN) $(PPUSER) $@ -@ls -ls $@ -@echo "mkpasswd installed normally"; echo "" inst-dir: $(TOOLDIR) lint: $(LINT) $(LLFLAGS) $(SRCS) $(LINTLIBS) clean: tidy rm -f $(OBJS) tidy: rm -f core $(PROGS) zxmkpasswd *.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