summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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