forked from chic_luke/figasm
15 lines
168 B
Makefile
15 lines
168 B
Makefile
FILE = figa
|
|
|
|
all:
|
|
as -o $(FILE).o $(FILE).s
|
|
ld -o $(FILE) $(FILE).o
|
|
|
|
clean:
|
|
rm $(FILE).o
|
|
rm $(FILE)
|
|
|
|
debug:
|
|
as -g -o $(FILE).o $(FILE).s
|
|
ld -o $(FILE) $(FILE).o
|
|
|