aboutsummaryrefslogtreecommitdiff
path: root/cripp/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'cripp/Makefile')
-rw-r--r--cripp/Makefile13
1 files changed, 12 insertions, 1 deletions
diff --git a/cripp/Makefile b/cripp/Makefile
index 925e6f7..91015ae 100644
--- a/cripp/Makefile
+++ b/cripp/Makefile
@@ -1,2 +1,13 @@
CXX = g++
-CXXFLAGS = -Wall -Wextra -O2 -std=c++11 -lgmp -lgmpxx \ No newline at end of file
+CXXFLAGS = -Wall -Wextra -O2 -std=c++11 -lgmp -lgmpxx -I/usr/local/include -L/usr/local/lib
+BIN = cripp
+
+.PHONY: all clean remake
+
+all: $(BIN)
+
+clean:
+ rm -f $(BIN)
+
+remake: clean all
+