2023-02-21 23:07:48 +08:00
|
|
|
PROG ?= example # Program we are building
|
2023-05-23 22:02:24 +08:00
|
|
|
PACK ?= ./pack # Packing executable
|
2023-02-21 23:07:48 +08:00
|
|
|
DELETE = rm -rf # Command to remove files
|
|
|
|
OUT ?= -o $(PROG) # Compiler argument for output file
|
|
|
|
SOURCES = main.c mongoose.c net.c packed_fs.c # Source code files
|
|
|
|
CFLAGS = -W -Wall -Wextra -g -I. # Build options
|
2023-02-04 21:57:11 +08:00
|
|
|
|
|
|
|
# Mongoose build options. See https://mongoose.ws/documentation/#build-options
|
2023-02-16 05:04:48 +08:00
|
|
|
CFLAGS_MONGOOSE += -DMG_ENABLE_PACKED_FS=1
|
2023-02-04 21:57:11 +08:00
|
|
|
|
2023-05-23 22:02:24 +08:00
|
|
|
FILES_TO_EMBED ?= $(wildcard web_root/*)
|
|
|
|
|
2023-02-21 23:07:48 +08:00
|
|
|
ifeq ($(OS),Windows_NT) # Windows settings. Assume MinGW compiler. To use VC: make CC=cl CFLAGS=/MD OUT=/Feprog.exe
|
2023-02-04 21:57:11 +08:00
|
|
|
PROG ?= example.exe # Use .exe suffix for the binary
|
2023-05-23 22:02:24 +08:00
|
|
|
PACK = pack.exe # Packing executable
|
2023-02-04 21:57:11 +08:00
|
|
|
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
|
2023-02-16 05:04:48 +08:00
|
|
|
OUT ?= -o $(PROG) # Build output
|
2023-02-21 23:07:48 +08:00
|
|
|
MAKE += WINDOWS=1 CC=$(CC)
|
2022-08-26 21:20:29 +08:00
|
|
|
endif
|
|
|
|
|
2023-02-21 23:07:48 +08:00
|
|
|
all: $(PROG) # Default target. Build and run program
|
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
|
2023-05-26 02:01:48 +08:00
|
|
|
packed_fs.c: ca.pem $(FILES_TO_EMBED) Makefile
|
2023-05-23 22:02:24 +08:00
|
|
|
$(CC) ../../test/pack.c -o $(PACK)
|
|
|
|
ifeq ($(OS),Windows_NT)
|
2023-05-26 02:01:48 +08:00
|
|
|
$(PACK) ca.pem $(FILES_TO_EMBED) > $@
|
2023-05-23 22:02:24 +08:00
|
|
|
else
|
2023-05-26 02:01:48 +08:00
|
|
|
rm -rf tmp/web_root && mkdir tmp && cp -r web_root tmp/ && cp -f ca.pem tmp/
|
|
|
|
cd tmp && echo $(FILES_TO_EMBED) | xargs -n1 gzip && ../pack ca.pem `find web_root -type f` > ../$@
|
2023-02-16 05:23:52 +08:00
|
|
|
endif
|
2022-04-20 01:46:14 +08:00
|
|
|
|
2023-02-21 23:07:48 +08:00
|
|
|
$(PROG): $(SOURCES) # Build program from sources
|
2023-02-16 05:04:48 +08:00
|
|
|
$(CC) $(SOURCES) $(CFLAGS) $(CFLAGS_MONGOOSE) $(CFLAGS_EXTRA) $(OUT)
|
2020-12-05 19:26:32 +08:00
|
|
|
|
2023-02-21 23:07:48 +08:00
|
|
|
clean: # Cleanup. Delete built program and all build artifacts
|
|
|
|
$(DELETE) $(PROG) *.o *.obj *.exe *.dSYM pack tmp mbedtls
|
|
|
|
|
|
|
|
# see https://mongoose.ws/tutorials/tls/#how-to-build for TLS build options
|
|
|
|
|
|
|
|
mbedtls: # Pull and build mbedTLS library
|
|
|
|
git clone --depth 1 -b v2.28.2 https://github.com/mbed-tls/mbedtls $@
|
|
|
|
$(MAKE) -C mbedtls/library
|