mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 13:41:13 +00:00
7 lines
163 B
Makefile
7 lines
163 B
Makefile
CFLAGS = -Wall -fpic -coverage -lm -std=c99 -ftest-coverage -fprofile-arcs
|
|
|
|
all:
|
|
gcc -o testme -g testme.c $(CFLAGS)
|
|
|
|
clean:
|
|
rm -f testme testmeresults.out
|