aboutsummaryrefslogtreecommitdiff
path: root/envelope/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'envelope/Makefile')
-rw-r--r--envelope/Makefile30
1 files changed, 30 insertions, 0 deletions
diff --git a/envelope/Makefile b/envelope/Makefile
new file mode 100644
index 0000000..06b0419
--- /dev/null
+++ b/envelope/Makefile
@@ -0,0 +1,30 @@
+CXX = g++
+CXXFLAGS = -Wall -Wextra -std=c++0x -fwrapv
+LDFLAGS =
+ifneq ($(DEBUG),)
+ CXXFLAGS += -g
+else
+ CXXFLAGS += -O2
+endif
+ifeq ($(shell uname),Linux)
+ LDFLAGS += -lbsd
+endif
+
+BIN = envelope
+
+
+.PHONY: all clean remake
+
+all: $(BIN)
+
+clean:
+ rm -rf $(BIN) *.o *.dSYM
+
+remake: clean all
+
+
+$(BIN): $(patsubst %.cpp,%.o,$(wildcard *.cpp)) ../cryptolib.a
+ $(CXX) -o $@ $^ $(LDFLAGS)
+
+%.o: %.cpp $(wildcard *.h)
+ $(CXX) $(CXXFLAGS) -c -o $@ $<