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

⟦238db5bb1⟧ TextFile

    Length: 529 (0x211)
    Types: TextFile
    Names: »Makefile«

Derivation

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

TextFile

INC = ../include
# AR = shar -c -v
AR = post -c -v -p 9 17
B = ..
D = util/

DFLAGS = -O
CFLAGS = -I${INC} ${DFLAGS}

OBJS = vstring.o	virtmem.o 	  mytime.o

all		: ${OBJS}

shar		: util.shar

util.shar	: README Makefile *.c
	( cd ${B} ; ${AR}	\
		${D}README	${D}COPYRIGHT	${D}Makefile	\
		${D}mytime.c	${D}virtmem.c	${D}vstring.c	\
	> ${D}util.shar )

mytime.o	: mytime.c

virtmem.o	: virtmem.c	${INC}/adltypes.h	${INC}/virtmem.h

vstring.o	: vstring.c	${INC}/adltypes.h	${INC}/virtmem.h

clean		:
	rm -f ${OBJS} core util.shar