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

⟦300c1aa91⟧ TextFile

    Length: 445 (0x1bd)
    Types: TextFile
    Names: »Makefile«

Derivation

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

TextFile

SHELL=/bin/sh
CFLAGS=-O
SRCES= user.c daemon.c maze.c
INCLS= globals.h
OBJS = $(SRCES:.c=.o)
all:	mazewar mazedaemon
mazewar:	user.o maze.o
	cc user.o maze.o -lcurses -ltermcap -o mazewar
mazedaemon:	daemon.o maze.o
	cc daemon.o maze.o -o mazedaemon
$(OBJS):	globals.h
tape:;	tar cv README Makefile $(INCLS) $(SRCES)
clean:;	rm -f a.out core $(OBJS)
love:;	@echo "my place or yours?"
shar:;	shar README Makefile $(INCLS) $(SRCES) > mazewar.shar