aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2018-12-15 16:47:22 -0500
committerAlexander Pickering <alexandermpickering@gmail.com>2018-12-15 16:47:22 -0500
commit195c332a2314305392ee2a09272e3fbd4f1b134a (patch)
tree83c347400389e7d5c8693d6e089b233fa9fb8f3f /Makefile
parent7d3b0b917cdb93d249dc356db8471fe9e6863424 (diff)
downloadlibctemplates-195c332a2314305392ee2a09272e3fbd4f1b134a.tar.gz
libctemplates-195c332a2314305392ee2a09272e3fbd4f1b134a.tar.bz2
libctemplates-195c332a2314305392ee2a09272e3fbd4f1b134a.zip
Make tokenize return double-linked list
Tokenize now has a doubly linked list of toekns, for additionall help parsing break/continue instructions.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d6580b2..38e220e 100644
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,7 @@ $(objfiles) : build/%.o : src/%.c src/%.h
$(CC) $(CFLAGS) -c -o $@ $<
clean:
- rm -f build/*.o *.a template
+ $(RM) build/*.o *.a $(LIBNAME)
$(TEST_1_NAME): t/test_1.c $(LIBNAME)
$(CC) $(CFLAGS) -o $(TEST_1_NAME) t/test_1.c -lctemplates