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

⟦c8a6efb30⟧ TextFile

    Length: 429 (0x1ad)
    Types: TextFile
    Names: »makefile«

Derivation

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

TextFile

OBJS=main.o plot.o sub1.o sub2.o termio.o

# use -f if on a 3b2/300 (no hardware floating point)
# use -DBSD if on a BSD machine
#CFLAGS=-O -f
#CFLAGS=-O -DBSD
CFLAGS=-O

# use -ltermlib if on a BSD machine
#LIBS=-lm -lcurses -ltermlib
LIBS=-lm -lcurses

a.out:	$(OBJS)
	cc $(CFLAGS) $(OBJS) $(LIBS)

install:	a.out
	mv a.out /usr/games/vtrek
	cp vtrek.doc /usr/games/lib/vtrek.doc

.c.o:
	cc $(CFLAGS) -c $*.c

$(OBJS): vtrek.h