helloworld/Makefile

12 lines
242 B
Makefile
Raw Normal View History

2018-01-07 21:27:25 +01:00
CC=gcc
CFLAGS="-Wall"
debug:clean
$(CC) $(CFLAGS) -g -o helloworld helloworld.c
stable:clean
$(CC) $(CFLAGS) -o helloworld helloworld.c
asm:clean
yasm -f elf -o helloworld helloworld.asm
chmod +x helloworld
2018-01-07 21:27:25 +01:00
clean:
rm -vfr *~ helloworld