helloworld/Makefile
2018-01-10 22:25:08 +01:00

9 lines
169 B
Makefile

CC=gcc
CFLAGS="-Wall"
debug:clean
$(CC) $(CFLAGS) -g -o helloworld helloworld.c
stable:clean
$(CC) $(CFLAGS) -o helloworld helloworld.c
clean:
rm -vfr *~ helloworld