summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2016-12-09 18:42:45 +0100
committertomsmeding <tom.smeding@gmail.com>2016-12-09 18:42:45 +0100
commit6a0325b3ab8e4680de8b4786ada721a1e671157c (patch)
treeeb0367379d1e9dc66913f79d646ed7c3c908f9a9 /Makefile
Initial
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..87abe17
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,33 @@
+OPENSSL_LOC = /usr/local/opt/openssl
+
+CC = gcc
+CFLAGS = -Wall -Wextra -std=c11 -fwrapv -I$(OPENSSL_LOC)/include
+CXX = g++
+CXXFLAGS = -Wall -Wextra -std=c++11 -fwrapv -I$(OPENSSL_LOC)/include
+LDFLAGS = -L$(OPENSSL_LOC)/lib -lcrypto
+ifneq ($(DEBUG),)
+ CFLAGS += -g
+ CXXFLAGS += -g
+else
+ CFLAGS += -O2
+ CXXFLAGS += -O2
+endif
+
+CTARGETS = $(patsubst %.c,%,$(wildcard *.c))
+CXXTARGETS = $(patsubst %.cpp,%,$(wildcard *.cpp))
+
+.PHONY: all clean remake
+
+all: $(CTARGETS) $(CXXTARGETS)
+
+clean:
+ rm -rf $(CXXTARGETS) $(CTARGETS) *.dSYM
+
+remake: clean all
+
+
+$(CTARGETS): %: %.c
+ $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
+
+$(CXXTARGETS): %: %.c
+ $(CXX) $(CXXFLAGS) -o $@ $< $(LDFLAGS)