summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2020-04-29 17:53:32 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2020-04-29 17:53:32 -0400
commit9797ea8be2220759eab9ec546f43c6b9a04c7cc5 (patch)
treeeaeb88ea1a63674481d5e324a18861af451154c4 /Makefile
parent3191b60b80b540c2a800748b72a51332261faceb (diff)
Totally revamped the program, and made it faster.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 09649e1..cdc6662 100644
--- a/Makefile
+++ b/Makefile
@@ -10,11 +10,11 @@ endif
CFLAGS = $(PCC_CFLAGS) $(CFLAGS_EXTRA)
OBJS = clld.c
OBJ_NAME = clld
-all : $(OBJS)
+all : clean $(OBJS)
$(CC) $(OBJS) $(CFLAGS) -o $(OBJ_NAME)
test-mvmt :
$(CC) test-mvmt.c $(CFLAGS) -o test-mvmt
-benchmark:
+benchmark: clean
$(CC) clld-bench.c $(CFLAGS) -o clld-bench
clean :
rm -f $(OBJ_NAME) test-mvmt clld-bench