From fc236266f7931cde83c5c136a0a4e0246ab018e0 Mon Sep 17 00:00:00 2001 From: tomsmeding Date: Sat, 8 Oct 2016 22:21:24 +0200 Subject: Add envelope application using the crypto lib --- envelope/Makefile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 envelope/Makefile (limited to 'envelope/Makefile') 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 $@ $< -- cgit v1.2.3-70-g09d2