aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2018-01-18 10:42:30 -0500
committerAlexander Pickering <alexandermpickering@gmail.com>2018-01-18 10:42:30 -0500
commita5d0a52409075f89cf13d5475e1cb14b3c76dff0 (patch)
tree944602910902690ba2f4feeea2708637a233b1b8 /Makefile
parent51031430f6f3607a4139b47e30dcecaaa9e57121 (diff)
downloadlibctemplates-a5d0a52409075f89cf13d5475e1cb14b3c76dff0.tar.gz
libctemplates-a5d0a52409075f89cf13d5475e1cb14b3c76dff0.tar.bz2
libctemplates-a5d0a52409075f89cf13d5475e1cb14b3c76dff0.zip
More changes for unix file paths
Changed test file path from windows style to unix style.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 462bf0c..6af3c3b 100644
--- a/Makefile
+++ b/Makefile
@@ -26,7 +26,7 @@ clean:
rm -f *.o *.a template
$(TEST_1_NAME): t/test_1.c $(LIBNAME)
- $(CC) $(CFLAGS) -o t\test_1.exe t\test_1.c -lctemplates
+ $(CC) $(CFLAGS) -o $(TEST_1_NAME) t/test_1.c -lctemplates
test: $(TEST_1_NAME)
$(TEST_1_NAME)