dos33fsprogs/ethernet/Makefile

25 lines
506 B
Makefile
Raw Normal View History

2016-12-01 02:33:33 +00:00
PCX2HGR = ../hgr-utils/pcx2hgr
DOS33 = ../dos33fs-utils/dos33
TXT2BAS = ../asoft_basic-utils/tokenize_asoft
SHAPETABLE = ../hgr-utils/shape_table
all: ethernet.dsk
SETUP.BAS: setup.bas
$(TXT2BAS) < setup.bas > SETUP.BAS
WEBSERVER.BAS: webserver.bas
$(TXT2BAS) < webserver.bas > WEBSERVER.BAS
ethernet.dsk: SETUP.BAS \
2016-12-05 13:24:00 +00:00
WEBSERVER.BAS \
R.TXT
2016-12-01 02:33:33 +00:00
$(DOS33) -y ethernet.dsk SAVE A SETUP.BAS
$(DOS33) -y ethernet.dsk SAVE A WEBSERVER.BAS
2016-12-05 13:24:00 +00:00
$(DOS33) -y ethernet.dsk SAVE T R.TXT
2016-12-01 02:33:33 +00:00
clean:
rm -f *~ *.BAS