9 lines
167 B
Makefile
9 lines
167 B
Makefile
|
|
AS = 64tass
|
|
|
|
ASFLAGS = --nostart --flat --s-record
|
|
|
|
# Build the object files from assembly
|
|
hello.s37: hello.s
|
|
$(AS) $(ASFLAGS) --list=hello.lst -o hello.s37 hello.s
|