dos33fsprogs/presenter_demo/Makefile

24 lines
458 B
Makefile
Raw Normal View History

2012-05-04 20:03:10 +00:00
CC = gcc
CFLAGS = -O2 -Wall
LFLAGS =
all: presenter_demo.dsk
presenter_demo.dsk: PRESENTER_DEMO TITLE.IMG
../dos33 presenter_demo.dsk SAVE A PRESENTER_DEMO
../dos33 presenter_demo.dsk SAVE B TITLE.IMG
2012-05-04 20:03:10 +00:00
TITLE.IMG: title.pcx ../pcx2hgr
../pcx2hgr title.pcx > TITLE.IMG
2012-05-04 20:03:10 +00:00
PRESENTER_DEMO: demo.bas
../tokenize_asoft < demo.bas > PRESENTER_DEMO
2012-05-04 20:03:10 +00:00
demo.bas: ../asoft_presenter
../asoft_presenter . > demo.bas
2012-05-04 20:03:10 +00:00
clean:
rm -f *~ *.IMG *.bas PRESENTER_DEMO
2012-05-04 20:03:10 +00:00