reading file
[sped.git] / makefile
1 CC=gcc
2 CFLAGS=-m32 -no-pie -g
3
4 .PHONY: clean
5
6 make: sped
7
8 sped.o: sped.asm
9         nasm -f elf32 $^ -o $@
10
11 sped: sped.o
12         $(CC) $(CFLAGS) $^ -o $@
13
14 clean:
15         rm sped *.o