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

⟦e2773b7e9⟧ TextFile

    Length: 587 (0x24b)
    Types: TextFile
    Names: »Makefile«

Derivation

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

TextFile

DESTDIR=
CFLAGS=	-O -DCURSED
# Use -DCURSED to get the "curses" version
OBJS=	main.o alc.o str.o readin.o nxtwrd.o rdr.o init.o\
	play.o misc.o prt.o file.o disply.o
SRCS=	main.c alc.c str.c readin.c nxtwrd.c rdr.c init.c\
	play.c misc.c prt.c file.c disply.c
LIB=	curses
# LIB=curses for the "curses" version, LIB=winlib" for the original

adv:	$(OBJS)
	$(CC) $(CFLAGS) -o adv $(OBJS) -l$(LIB) -ltermlib

$(OBJS): adv.h

lint:
	lint -h adv.h $(SRCS)
	
list:
	llist -t adv DOC adv.h $(SRCS)

clean:
	rm -f core *.o adv

install: adv
	install -s adv $(DESTDIR)/usr/local/bin/adv

depend: