helloworld/Makefile

9 lines
169 B
Makefile
Raw Permalink 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:
2018-01-10 22:25:08 +01:00
rm -vfr *~ helloworld