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
Index: M T

⟦c6b1c7e7d⟧ TextFile

    Length: 731 (0x2db)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/General/Adventure/src/munge/Makefile« 

TextFile

#
# Makefile for the Adventure Compiler.
# 	(c) Ken Wellsch 1985
#
CFLAGS = -O
KLIB = ../kio/klib.a
MLIB = mlib.a

MAIN = munge.c

SRC =	buffers.c compile.c fio.c glob.c \
	majors.c parse.c symtab.c util.c

OBJ =	buffers.o compile.o fio.o glob.o \
	majors.o parse.o symtab.o util.o

HEADER = mdefs.h
# PRINTER = -Phw
PRINTER =

munge: $(MAIN) $(MLIB)
	cc $(CFLAGS) $(MAIN) mlib.a $(KLIB) -o munge
	size munge

$(SRC) $(MAIN):: mdefs.h
	touch $@

$(MLIB): $(SRC)
	-ar x $(MLIB)
	-cc $(CFLAGS) -c $?
	rm -f $(MLIB)
	-ar ru $(MLIB) $(OBJ)
	rm -f *.o
	ranlib $(MLIB)

clean:
	rm *.o

backup:
	cp Makefile $(HEADER) $(MAIN) $(SRC) bkup

print:
	lpr $(PRINTER) -p -J "Munge" Makefile $(HEADER) $(MAIN) $(SRC)

lint:
	lint $(SRC) $(MAIN)