2023-02-04 21:57:11 +08:00
|
|
|
SOURCES = ../../mongoose.c main.c net.c packed_fs.c
|
|
|
|
CFLAGS = -W -Wall -Wextra -g
|
|
|
|
|
|
|
|
# Mongoose build options. See https://mongoose.ws/documentation/#build-options
|
|
|
|
CFLAGS += -I ../.. -DMG_ENABLE_PACKED_FS=1
|
|
|
|
|
|
|
|
ifeq ($(OS),Windows_NT)
|
|
|
|
# Windows settings. Assume MinGW compiler
|
|
|
|
PROG ?= example.exe # Use .exe suffix for the binary
|
|
|
|
CC = gcc # Use MinGW gcc compiler
|
|
|
|
CFLAGS += -lws2_32 # Link against Winsock library
|
|
|
|
DELETE = cmd /C del /Q /F /S # Command prompt command to delete files
|
|
|
|
else
|
|
|
|
# Mac, Linux
|
|
|
|
PROG ?= example
|
|
|
|
DELETE = rm -rf
|
2022-08-26 21:20:29 +08:00
|
|
|
endif
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
all: $(PROG)
|
2023-02-04 21:57:11 +08:00
|
|
|
$(RUN) ./$(PROG) $(ARGS)
|
2020-12-05 19:26:32 +08:00
|
|
|
|
2023-02-04 21:57:11 +08:00
|
|
|
# Before embedding files, gzip them to save space
|
|
|
|
packed_fs.c: $(shell find web_root -type f) Makefile
|
|
|
|
rm -rf tmp/web_root && mkdir tmp && cp -r web_root tmp/
|
|
|
|
find tmp -type f | xargs -n1 gzip
|
2021-07-30 20:19:20 +08:00
|
|
|
$(CC) ../../test/pack.c -o pack
|
2023-02-04 21:57:11 +08:00
|
|
|
cd tmp && ../pack `find web_root -type f` > ../$@
|
2022-04-20 01:46:14 +08:00
|
|
|
|
2023-02-04 21:57:11 +08:00
|
|
|
$(PROG): $(SOURCES)
|
|
|
|
$(CC) $(SOURCES) $(CFLAGS) $(CFLAGS_EXTRA) -o $@
|
2020-12-05 19:26:32 +08:00
|
|
|
|
|
|
|
clean:
|
2023-02-04 21:57:11 +08:00
|
|
|
$(DELETE) $(PROG) *.dSYM pack tmp
|