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

⟦1e9ca72b7⟧ TextFile

    Length: 319 (0x13f)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦653021b30⟧ »EurOpenD3/utils/downtime.tar.Z« 
        └─⟦946c717da⟧ 
            └─⟦this⟧ »libgen/Makefile« 

TextFile

#
# $Header: Makefile,v 1.2 88/04/12 10:35:55 mcooper Exp $
#

DIR	= /usr/public

LIBRARY	= libgen.a
CFLAGS	= -O
OBJS 	= gen.o rsh.o

$(LIBRARY): $(OBJS)
	ar r $@ $(OBJS)
	ranlib $@

install: $(LIBRARY)
	install -m 644 $(LIBRARY) $(DIR)/lib
	ranlib $(DIR)/lib/$(LIBRARY)

clean:
	rm -f *.o *~ \#* core a.out $(LIBRARY)