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: T m

⟦89f12e42b⟧ TextFile

    Length: 995 (0x3e3)
    Types: TextFile
    Names: »makefile«

Derivation

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

TextFile

# Leave in the -O blast you!

CC= cc
CFLAGS= -O
FILES= airstrike.c etc.c midway.c movebombs.c moveships.c screen.c
OBJS= airstrike.o etc.o midway.o movebombs.o moveships.o screen.o
OTHERFILES= makefile externs.h globals.h Midway.doc
JUNKFILES= Midway fluff junk arch tags
LIBS= -lcurses -ltermlib 
PUB= /usr/games

.c.o:; ${CC} ${CFLAGS} -c $<

Midway: ${OBJS}
	cc ${OBJS} ${CFLAGS} ${LIBS} -o Midway

Cory: ${OBJS}
	cc ${OBJS} ${CFLAGS} ${LIBS} -i -o Cory

${OBJS}: externs.h

midway.o: globals.h

arch:
	ar uv MID.a ${FILES} ${OTHERFILES} 
	touch arch

profile: ${OBJS}
	cc -p -i ${OBJS} ${CFLAGS} ${LIBS} -o Midway.pro

install: ${PUB}/Midway ${PUB}/man/Midway.doc
${PUB}/Midway: Midway
	strip Midway
	cp Midway ${PUB}/Midway
	chmod 755 ${PUB}/Midway
	cp /dev/null ${PUB}/.midwaylog
	chmod 666 ${PUB}/.midwaylog
${PUB}/man/Midway.doc: Midway.doc
	cp Midway.doc ${PUB}/man/Midway.doc
	chmod 644 ${PUB}/man/Midway.doc

clean: arch
	rm -f ${OBJS} ${FILES} ${OTHERFILES} ${JUNKFILES}
	pack MID.a