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

⟦2add61668⟧ TextFile

    Length: 548 (0x224)
    Types: TextFile
    Names: »Makefile«

Derivation

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

TextFile

# Animal - makefile
#
# System Dependencies - edit as appropriate for your machine
#

# Unix System 5.3

CFLAGS= -O
LIBS= -lcurses

# BSD
#
#CFLAGS= -O -DBOGUS_GET -DBOGUS_BOX
#LIBS= -lcurses -ltermcap
#

# Unix System 5.2 (possibly other less advanced SysV ports)
#
#CFLAGS= -O -DBOGUS_GET -DBOGUS_BOX
#LIBS= -lcurses
#

LDFLAGS= -O
OBJS= an.o scr.o
SRC= an.c scr.c
EXE= animal

$(EXE): $(OBJS)
	cc $(LDFLAGS) $(OBJS) -o $(EXE) $(LIBS)

shar:
	xshar -v README animal.6 Makefile $(SRC) example > $(EXE).shar

man:
	nroff -man animal.6 > $(EXE).man