dos33fsprogs/glados3.3/Makefile

36 lines
1000 B
Makefile
Raw Normal View History

2017-01-04 19:08:24 +00:00
DOS33 = ../dos33fs-utils/dos33
TXT2BAS = ../asoft_basic-utils/tokenize_asoft
2017-01-05 04:47:29 +00:00
SHAPETABLE = ../hgr-utils/shape_table
SOUNDCONVERT = ../asoft_sound/asoft_sound
2017-01-04 19:08:24 +00:00
all: glados33.dsk
2017-01-05 04:47:29 +00:00
OBJECTS.SHAPE: objects.shape
$(SHAPETABLE) -b < objects.shape > OBJECTS.SHAPE
2017-01-04 19:08:24 +00:00
STILL_ALIVE.BAS: still_alive.bas
$(TXT2BAS) < still_alive.bas > STILL_ALIVE.BAS
2017-01-05 04:47:29 +00:00
shape_test.bas: objects.shape
$(SHAPETABLE) < objects.shape > shape_test.bas
SHAPE_TEST.BAS: shape_test.bas
$(TXT2BAS) < shape_test.bas > SHAPE_TEST.BAS
sound_test.bas: still_alive.notes
$(SOUNDCONVERT) < still_alive.notes > sound_test.bas
SOUND_TEST.BAS: sound_test.bas
$(TXT2BAS) < sound_test.bas > SOUND_TEST.BAS
glados33.dsk: STILL_ALIVE.BAS OBJECTS.SHAPE SHAPE_TEST.BAS SOUND_TEST.BAS
2017-01-04 19:08:24 +00:00
$(DOS33) -y glados33.dsk SAVE A STILL_ALIVE.BAS
2017-01-05 04:47:29 +00:00
$(DOS33) -y glados33.dsk SAVE B OBJECTS.SHAPE
$(DOS33) -y glados33.dsk SAVE A SHAPE_TEST.BAS
$(DOS33) -y glados33.dsk SAVE A SOUND_TEST.BAS
2017-01-04 19:08:24 +00:00
clean:
rm -f *~ *.BAS *.SHAPE sound_test.bas shape_test.bas *.lst
2017-01-04 19:08:24 +00:00