|
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: 1552 (0x610) Types: TextFile Names: »Makefile«
└─⟦4f9d7c866⟧ Bits:30007245 EUUGD6: Sikkerheds distributionen └─⟦123909933⟧ »./npasswd/npasswd.tar.Z« └─⟦22a202e7d⟧ └─⟦this⟧ »npass-new/npasswd_jpl/old.checkpasswd/dict/Makefile«
# -------------------------------------------------------------------- # # # # Author: Clyde Hoover # # Computation Center # # The University of Texas at Austin # # Austin, Texas 78712 # # clyde@emx.utexas.edu # # uunet!cs.utexas.edu!ut-emx!clyde # # # #This code may be distributed freely, provided this notice is retained. # # # # -------------------------------------------------------------------- # # # Makefile for checkpasswd auxillary programs # # @(#)Makefile 1.1 5/18/89 (cc.utexas.edu) # DEBUG = -g -DDEBUG # Change the line below to $(DEBUG) CFLAGS = -O # If building with MDBM, use these lines #ZLIB = ../mdbm/libmdbm.a #ZFLAGS = -DMDBM -I../mdbm $(ZLIB) # If building with NDBM, use these lines ZLIB = ZFLAGS = -DNDBM all: makedict viewdict install:: @echo No installation to be done makedict: makedict.c $(ZLIB) $(CC) $(CFLAGS) -o makedict makedict.c $(ZFLAGS) viewdict: viewdict.c $(ZLIB) $(CC) $(CFLAGS) -o viewdict viewdict.c $(ZFLAGS) clean:: -rm -f *.o a.out core makedict viewdict ../mdbm/libmdbm.a:: (cd ../mdbm; make $(MFLAGS))