summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 25ef589..189e4c8 100644
--- a/Makefile
+++ b/Makefile
@@ -14,8 +14,10 @@ all : $(OBJS)
$(CC) $(OBJS) $(CFLAGS) -o $(OBJ_NAME)
test-mvmt :
$(CC) test-mvmt.c $(CFLAGS) -o test-mvmt
+benchmark:
+ $(CC) clld-bench.c $(CFLAGS) -o clld-bench
clean :
- rm -f $(OBJ_NAME) test-mvmt
+ rm -f $(OBJ_NAME) test-mvmt clld-bench
install :
install -D -m755 clld $(BIN_DIR)/clld
uninstall :