diff options
| author | yum <yum.food.vr@gmail.com> | 2023-09-13 21:43:33 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2023-09-13 21:55:05 -0700 |
| commit | 703e183e430f15aff6005d38aefcacf91e2314cd (patch) | |
| tree | 93f647cf7e4be14e36fa9d9b79ea9717fe93e417 /BrowserSource/Proxy/Makefile | |
| parent | 8fcc6c248554a0b08ecd4b43cc0971b78810c080 (diff) | |
General cleanupv0.15.3
Remove unused proxy code, curl, and images.
Diffstat (limited to 'BrowserSource/Proxy/Makefile')
| -rw-r--r-- | BrowserSource/Proxy/Makefile | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/BrowserSource/Proxy/Makefile b/BrowserSource/Proxy/Makefile deleted file mode 100644 index 81eb814..0000000 --- a/BrowserSource/Proxy/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -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)" - |
