cos2000v1/noyau/makefile

17 lines
190 B
Makefile

ASM=fasm
CLEAN=rm -rf
all: systeme.sys disque.sys video.sys
systeme.sys: systeme.asm
$(ASM) $^
disque.sys: disque.asm
$(ASM) $^
video.sys: video.asm
$(ASM) $^
clean:
$(CLEAN) *.sys