DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦b5fb59e1a⟧ TextFile

    Length: 344 (0x158)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦4f9d7c866⟧ Bits:30007245 EUUGD6: Sikkerheds distributionen
    └─⟦123909933⟧ »./npasswd/npasswd.tar.Z« 
        └─⟦22a202e7d⟧ 
            └─⟦this⟧ »npass-new/cracklib/Makefile« 
            └─⟦this⟧ »npass-new/npasswd_jpl/cracklib/Makefile« 

TextFile

# 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