|
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 - download
Length: 344 (0x158) Types: TextFile Names: »Makefile«
└─⟦4f9d7c866⟧ Bits:30007245 EUUGD6: Sikkerheds distributionen └─⟦123909933⟧ »./npasswd/npasswd.tar.Z« └─⟦22a202e7d⟧ └─⟦this⟧ »npass-new/cracklib/Makefile« └─⟦this⟧ »npass-new/npasswd_jpl/cracklib/Makefile«
# Makefile for glue library SOURCES = checkpasswd.c goodpass.c OBJECTS = checkpasswd.o goodpass.o LIBNAME = checkpasswd.a CONFIG_FILE = all: $(LIBNAME) clean: -rm *.o *.a core demo $(LIBNAME): $(OBJECTS) -rm -f $(LIBNAME) ar cr $(LIBNAME) $(LIBMAIN) $(OBJECTS) ranlib $(LIBNAME) demo: demo.o $(OBJECTS) cc demo.o $(OBJECTS) -o demo