From 1dbef1bfdefe8d7967a360f00d350db307d344e2 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sat, 18 Jan 2020 08:35:24 +0100 Subject: Add list, map and command parsing --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 8b6cb84..9ab88c1 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,12 @@ OBJ = main.o tokenizer.o parser.o all: $(OBJ) cc -o tsl $(OBJ) -fPIE +clean: + rm $(OBJ) tsl + +compiledb: + make clean; bear make + main.o: src/main.c include/tokenizer.h cc -c src/main.c $(CFLAGS) -- cgit v1.2.3