figasm/Makefile

11 lines
134 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
debug:
as -g -o $(FILE).o $(FILE).s
ld -o $(FILE) $(FILE).o