diff options
author | 2023-02-03 22:20:33 +0100 | |
---|---|---|
committer | 2023-02-03 22:20:33 +0100 | |
commit | c0683663affb71091d7952575f3ee06e30bf9259 (patch) | |
tree | 9f244c00a57b818bac21773702d43ced44c1d1e2 /test | |
parent | 553f25a356c6d56eb237b0906ac754bab8d7eb2f (diff) | |
download | string2-c0683663affb71091d7952575f3ee06e30bf9259.tar.gz string2-c0683663affb71091d7952575f3ee06e30bf9259.zip |
Correct the clean target in test directory
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index 5cc71c6..6b65bb0 100644 --- a/test/Makefile +++ b/test/Makefile @@ -18,4 +18,4 @@ test-app: ${OBJ} ${CC} ${LDFLAGS} -o $@ ${OBJ} clean: - rm -f ${test-app} ${OBJ} + rm -f test-app ${OBJ} *.core |