cos2000v1/noyau/makefile

22 lines
304 B
Makefile
Raw Normal View History

ASM=fasm
CLEAN=rm -rf
LISTING=listing
2019-07-09 18:30:00 +02:00
all: disque.sys video.sys systeme.sys
sync
systeme.sys: systeme.asm
$(ASM) $^ $@ -s systeme.fas
$(LISTING) systeme.fas systeme.txt
disque.sys: disque.asm
2019-07-09 18:30:00 +02:00
$(ASM) $^ $@
video.sys: video.asm
2019-07-09 18:30:00 +02:00
$(ASM) $^ $@
clean:
$(CLEAN) *.sys
$(CLEAN) *.fas
$(CLEAN) *.txt