aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--envelope/Makefile10
-rwxr-xr-xenvelope/envelopebin116616 -> 0 bytes
2 files changed, 5 insertions, 5 deletions
diff --git a/envelope/Makefile b/envelope/Makefile
index 19e92ed..64cbe4f 100644
--- a/envelope/Makefile
+++ b/envelope/Makefile
@@ -13,12 +13,9 @@ endif
BIN = envelope
-.PHONY: all clean remake makelib
+.PHONY: all clean remake
-makelib:
- make -C ..
-
-all: makelib $(BIN)
+all: $(BIN)
clean:
rm -rf $(BIN) *.o *.dSYM
@@ -26,6 +23,9 @@ clean:
remake: clean all
+../cryptolib.a:
+ make -C .. cryptolib.a
+
$(BIN): $(patsubst %.cpp,%.o,$(wildcard *.cpp)) ../cryptolib.a
$(CXX) -o $@ $^ $(LDFLAGS)
diff --git a/envelope/envelope b/envelope/envelope
deleted file mode 100755
index 5582c01..0000000
--- a/envelope/envelope
+++ /dev/null
Binary files differ