2019-07-06 10:52:53 +02:00
|
|
|
ASM=fasm
|
|
|
|
CLEAN=rm -rf
|
2019-07-28 14:56:41 +02:00
|
|
|
LISTING=listing
|
2019-07-05 19:44:28 +02:00
|
|
|
|
2019-07-09 18:30:00 +02:00
|
|
|
all: disque.sys video.sys systeme.sys
|
|
|
|
sync
|
2019-07-05 19:44:28 +02:00
|
|
|
|
2019-07-06 10:52:53 +02:00
|
|
|
systeme.sys: systeme.asm
|
2019-07-28 14:56:41 +02:00
|
|
|
$(ASM) $^ $@ -s systeme.fas
|
|
|
|
$(LISTING) systeme.fas systeme.txt
|
2019-07-05 19:44:28 +02:00
|
|
|
|
2019-07-06 10:52:53 +02:00
|
|
|
disque.sys: disque.asm
|
2019-07-09 18:30:00 +02:00
|
|
|
$(ASM) $^ $@
|
2019-07-05 19:44:28 +02:00
|
|
|
|
2019-07-06 10:52:53 +02:00
|
|
|
video.sys: video.asm
|
2019-07-09 18:30:00 +02:00
|
|
|
$(ASM) $^ $@
|
2019-07-05 19:44:28 +02:00
|
|
|
|
|
|
|
clean:
|
2019-07-06 10:52:53 +02:00
|
|
|
$(CLEAN) *.sys
|
2019-07-28 14:56:41 +02:00
|
|
|
$(CLEAN) *.fas
|
|
|
|
$(CLEAN) *.txt
|