figasm/Makefile

15 lines
168 B
Makefile
Raw Normal View History

2020-07-01 00:22:49 +02:00
FILE = figa
all:
as -o $(FILE).o $(FILE).s
ld -o $(FILE) $(FILE).o
2021-05-14 19:42:06 +02:00
clean:
rm $(FILE).o
rm $(FILE)
2020-07-01 00:22:49 +02:00
debug:
as -g -o $(FILE).o $(FILE).s
ld -o $(FILE) $(FILE).o