helloworld/Makefile

9 lines
169 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
clean:
rm -vfr *~ helloworld