aboutsummaryrefslogtreecommitdiff
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 99614c1..59d8476 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ CFLAGS += -I.
CFLAGS += -std=c99
CFLAGS += -Wall
LDLIBS += -lm
-BIN = expvc expexc
+BIN = expvc expexc tprojvc
all: $(BIN)
@@ -11,5 +11,7 @@ expvc: expvc.c
expexc: expexc.c
+tprojvc: tprojvc.c
+
clean:
rm -rf $(BIN)