mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-10-31 10:13:35 +00:00
22 lines
456 B
Makefile
22 lines
456 B
Makefile
|
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 \
|
||
|
WEBSERVER.BAS
|
||
|
$(DOS33) -y ethernet.dsk SAVE A SETUP.BAS
|
||
|
$(DOS33) -y ethernet.dsk SAVE A WEBSERVER.BAS
|
||
|
|
||
|
clean:
|
||
|
rm -f *~ *.BAS
|