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

⟦d33d95ad6⟧ TextFile

    Length: 633 (0x279)
    Types: TextFile
    Names: »Makefile.orig«

Derivation

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

TextFile

#  - un'cpio' this in /usr/src or /usr/local/src or something - doesn't matter.
#  - do a 'make install' in the tetrix directory
#  - tetrix gets installed in /usr/lbin
#  - this will create a high score file in /usr/tmp, so doing it again
#    later on will erase high scores for the machine.


OBJS= MoveR.o MoveL.o NewP.o AdvanceP.o Rotate.o tet.o
INCS= tet.h

tetrix: $(OBJS) $(INCS)
	cc -O $(OBJS) -o tetrix -lcurses

MoveR.o: MoveR.c

MoveL.o: MoveL.c

NewP.o: NewP.c

AdvanceP.o: AdvanceP.c

Rotate.o: Rotate.c

tet.o: tet.c

install: tetrix
	chmod 755 tetrix
	/bin/mv -f tetrix /usr/lbin

clean:
	/bin/rm -rf tetrix core *.o