We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 87698cc + 2ab88ef commit a7a42daCopy full SHA for a7a42da
2 files changed
Defs.make
@@ -5,7 +5,7 @@
5
#
6
#All defines to be explained in docs/testing_framework.txt
7
8
-PROJ_PATH=~/workspaces/c_everything
+PROJ_PATH=$(PWD)
9
MODULE=test
10
11
.show:
Makefile
@@ -1,6 +1,6 @@
1
include Defs.make
2
3
-CC=cc
+CC=gcc
4
TEST_FILE_DIRECTORY="$(PROJ_PATH)/test/src"
LDLIBS= -lm -pg
@@ -58,6 +58,7 @@ clean:
58
make -C test/ clean
59
# make -C ds/ clean
60
find ${PROJ_PATH} -name "*.[ao]" -exec rm -v {} \;
61
+ rm $(PROJ_PATH)/gmon.out
62
63
64
help:
0 commit comments