summaryrefslogtreecommitdiffstats
path: root/BrowserSource/Proxy/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'BrowserSource/Proxy/Makefile')
-rw-r--r--BrowserSource/Proxy/Makefile37
1 files changed, 37 insertions, 0 deletions
diff --git a/BrowserSource/Proxy/Makefile b/BrowserSource/Proxy/Makefile
new file mode 100644
index 0000000..81eb814
--- /dev/null
+++ b/BrowserSource/Proxy/Makefile
@@ -0,0 +1,37 @@
+CC := clang++
+
+MAKEFILE_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
+
+DEFINES :=
+CFLAGS := -Wall -Wextra -std=c++20 $(DEFINES) -I$(MAKEFILE_DIR)/fmt/include
+LDFLAGS := -L$(MAKEFILE_DIR)/fmt/build -lfmt -static
+
+SRCS := $(wildcard *.cpp)
+
+HDRS := $(wildcard *.h)
+
+OBJS := $(SRCS:.cpp=.o)
+
+EXE := server
+
+.PHONY: all
+all: $(EXE)
+
+$(EXE): $(OBJS)
+ $(CC) -o $@ $^ $(LDFLAGS)
+
+# Hack: any header change causes a full recompilation of everything.
+%.o: %.cpp $(HDRS)
+ $(CC) $(CFLAGS) -c -o $@ $<
+
+.PHONY: clean
+clean:
+ @rm -f $(OBJS) $(EXE)
+
+.PHONY: debug
+debug:
+ @echo "CC: $(CC)"
+ @echo "MAKEFILE_DIR: $(MAKEFILE_DIR)"
+ @echo "STT_TOP: $(STT_TOP)"
+ @echo "OBJS: $(OBJS)"
+