forked from chic_luke/figasm
11 lines
134 B
Makefile
11 lines
134 B
Makefile
|
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
|
||
|
|