42 lines
1.1 KiB
Makefile
Raw Normal View History

2016-11-30 21:33:33 -05:00
DOS33 = ../dos33fs-utils/dos33
TXT2BAS = ../asoft_basic-utils/tokenize_asoft
2016-12-05 14:48:22 -05:00
MAKEB = ../dos33fs-utils/make_b
2016-11-30 21:33:33 -05:00
all: ethernet.dsk
SETUP.BAS: setup.bas
$(TXT2BAS) < setup.bas > SETUP.BAS
WEBSERVER.BAS: webserver.bas
$(TXT2BAS) < webserver.bas > WEBSERVER.BAS
2016-12-13 16:57:02 -05:00
#about.html: ./c/about.html
# $(MAKEB) ./c/about.html about.html 0xc000
2016-12-13 16:57:02 -05:00
#index.html: ./c/index.html
# $(MAKEB) ./c/index.html index.html 0xc000
2016-12-13 16:57:02 -05:00
#favicon.ico: ./c/favicon.ico
# $(MAKEB) ./c/favicon.ico favicon.ico 0xc000
2016-12-13 16:57:02 -05:00
#vmw_logo.png: ./c/vmw_logo.png
# $(MAKEB) ./c/vmw_logo.png vmw_logo.png 0xc000
2016-12-05 14:48:22 -05:00
R.TXT: request.txt
$(MAKEB) request.txt R.TXT 0xc000
2016-11-30 21:33:33 -05:00
ethernet.dsk: SETUP.BAS \
2016-12-05 08:24:00 -05:00
WEBSERVER.BAS \
R.TXT \
2016-12-13 16:57:02 -05:00
./c/about.html ./c/index.html ./c/favicon.ico ./c/vmw_logo.png
2016-11-30 21:33:33 -05:00
$(DOS33) -y ethernet.dsk SAVE A SETUP.BAS
$(DOS33) -y ethernet.dsk SAVE A WEBSERVER.BAS
2016-12-13 16:57:02 -05:00
$(DOS33) -y ethernet.dsk BSAVE R.TXT
$(DOS33) -y ethernet.dsk BSAVE ./c/about.html
$(DOS33) -y ethernet.dsk BSAVE ./c/index.html
$(DOS33) -y ethernet.dsk BSAVE ./c/favicon.ico
$(DOS33) -y ethernet.dsk BSAVE ./c/vmw_logo.png
2016-11-30 21:33:33 -05:00
clean:
2016-12-05 14:48:22 -05:00
rm -f *~ *.BAS R.TXT