dos33fsprogs/ethernet/Makefile

42 lines
1.0 KiB
Makefile
Raw Normal View History

2016-12-01 02:33:33 +00:00
DOS33 = ../dos33fs-utils/dos33
TXT2BAS = ../asoft_basic-utils/tokenize_asoft
2016-12-05 19:48:22 +00:00
MAKEB = ../dos33fs-utils/make_b
2016-12-01 02:33:33 +00:00
all: ethernet.dsk
SETUP.BAS: setup.bas
$(TXT2BAS) < setup.bas > SETUP.BAS
WEBSERVER.BAS: webserver.bas
$(TXT2BAS) < webserver.bas > WEBSERVER.BAS
about.html: ./c/about.html
$(MAKEB) ./c/about.html about.html 0xc000
index.html: ./c/index.html
$(MAKEB) ./c/index.html index.html 0xc000
favicon.ico: ./c/favicon.ico
$(MAKEB) ./c/favicon.ico favicon.ico 0xc000
vmw_logo.png: ./c/vmw_logo.png
$(MAKEB) ./c/vmw_logo.png vmw_logo.png 0xc000
2016-12-05 19:48:22 +00:00
R.TXT: request.txt
$(MAKEB) request.txt R.TXT 0xc000
2016-12-01 02:33:33 +00:00
ethernet.dsk: SETUP.BAS \
2016-12-05 13:24:00 +00:00
WEBSERVER.BAS \
R.TXT \
about.html index.html favicon.ico vmw_logo.png
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 19:48:22 +00:00
$(DOS33) -y ethernet.dsk SAVE B R.TXT
$(DOS33) -y ethernet.dsk SAVE B about.html
$(DOS33) -y ethernet.dsk SAVE B index.html
$(DOS33) -y ethernet.dsk SAVE B favicon.ico
$(DOS33) -y ethernet.dsk SAVE B vmw_logo.png
2016-12-01 02:33:33 +00:00
clean:
2016-12-05 19:48:22 +00:00
rm -f *~ *.BAS R.TXT