summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..9c682b5
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,21 @@
+OBJ=src/server.o mongoose/mongoose.o
+OUT=bin/server
+
+CFLAGS += -Wall -DNO_CGI -DNO_POPEN -DUSE_IPV6
+CXXFLAGS += -Wall -std=c++0x -Imongoose
+#LDFLAGS +=
+
+ifdef DEBUG
+CFLAGS += -g -O0
+CXXFLAGS += -g -O0
+else
+CFLAGS += -O3
+CXXFLAGS += -O3
+endif
+
+all: build
+
+build: $(OBJ)
+ $(CXX) $(CPPFLAGS) $(OBJ) -o $(OUT) $(LDFLAGS)
+clean:
+ rm -rf $(OUT) $(OBJ)