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

⟦e339b095d⟧ TextFile

    Length: 963 (0x3c3)
    Types: TextFile
    Names: »Makefile.orig«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/Sun/Qix/Makefile.orig« 

TextFile

CFILES= main.c joystick.c sparks.c regions.c qmove.c polyfill.c \
	polygon_area.c polyfill_rec.c score.c
OBJS= main.o joystick.o sparks.o regions.o qmove.o polyfill.o score.o
REC_OBJS= main.o joystick.o sparks.o regions.o qmove.o \
	polygon_area.o polyfill_rec.o
ICONS= joystick.lf joystick.rt joystick.up joystick.dn joystick.stop \
	spark1.pr spark2.pr spark3.pr spark4.pr marker.cursor qix.icon \
	mouse.rt.icon
CFLAGS= -O
LDFLAGS= 
LIBES= -lsuntool -lsunwindow -lpixrect

qix.x: ${OBJS}
	@echo loading...
	@cc ${LDFLAGS} ${OBJS} ${LIBES} -o qix

# qix with a recursive polygon file rather than iterative.
# If you use it you have to unlimit the stacksize in csh
# and check the code to make sure it's called right (it's old).
qrec: ${REC_OBJS}
	@echo loading...
	@cc ${LDFLAGS} ${REC_OBJS} ${LIBES} -o qrec

tarmail : ;  tar fcv - Makefile qix.h ${CFILES} ${ICONS} | compress | \
	btoa > qix.tarmail

shar: ; shar Makefile qix.h ${CFILES} ${ICONS} > qix.shar