2023-05-26 22:48:20 +08:00
|
|
|
PROG ?= ./example # Program we are building
|
|
|
|
PACK ?= ./pack # Packing executable
|
|
|
|
DELETE = rm -rf # Command to remove files
|
2023-08-24 23:30:08 +08:00
|
|
|
GZIP ?= gzip # For compressing files in web_root/
|
2023-05-26 22:48:20 +08:00
|
|
|
OUT ?= -o $(PROG) # Compiler argument for output file
|
2023-08-19 17:25:09 +08:00
|
|
|
SOURCES = main.c mongoose.c net.c packed_fs.c # Source code files
|
|
|
|
CFLAGS = -W -Wall -Wextra -g -I. # Build options
|
2023-12-17 04:39:29 +08:00
|
|
|
NPX ?= npx
|
2023-02-04 21:57:11 +08:00
|
|
|
|
|
|
|
# Mongoose build options. See https://mongoose.ws/documentation/#build-options
|
2023-08-19 17:25:09 +08:00
|
|
|
CFLAGS_MONGOOSE += -DMG_ENABLE_PACKED_FS=1
|
2023-02-04 21:57:11 +08:00
|
|
|
|
2023-05-26 22:48:20 +08:00
|
|
|
ifeq ($(OS),Windows_NT) # Windows settings. Assume MinGW compiler. To use VC: make CC=cl CFLAGS=/MD OUT=/Feprog.exe
|
2023-06-01 20:48:20 +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-08-24 23:30:08 +08:00
|
|
|
GZIP = echo # No gzip on Windows
|
2022-08-26 21:20:29 +08:00
|
|
|
endif
|
|
|
|
|
2023-05-26 22:48:20 +08:00
|
|
|
# Default target. Build and run program
|
|
|
|
all: $(PROG)
|
|
|
|
$(RUN) $(PROG) $(ARGS)
|
2020-12-05 19:26:32 +08:00
|
|
|
|
2023-05-26 22:48:20 +08:00
|
|
|
# Build program from sources
|
|
|
|
$(PROG): $(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-05-26 22:48:20 +08:00
|
|
|
# Bundle JS libraries (preact, preact-router, ...) into a single file
|
|
|
|
web_root/bundle.js:
|
|
|
|
curl -s https://npm.reversehttp.com/preact,preact/hooks,htm/preact,preact-router -o $@
|
2023-02-21 23:07:48 +08:00
|
|
|
|
2023-05-26 22:48:20 +08:00
|
|
|
# Create optimised CSS. Prerequisite: npm -g i tailwindcss tailwindcss-font-inter
|
2023-06-29 20:26:19 +08:00
|
|
|
web_root/main.css: web_root/index.html $(wildcard web_root/*.js)
|
2023-12-17 04:39:29 +08:00
|
|
|
$(NPX) tailwindcss -o $@ --minify
|
2023-02-21 23:07:48 +08:00
|
|
|
|
2023-05-26 22:48:20 +08:00
|
|
|
# Generate packed filesystem for serving Web UI
|
2023-08-19 17:25:09 +08:00
|
|
|
packed_fs.c: $(wildcard web_root/*) $(wildcard certs/*) Makefile web_root/main.css web_root/bundle.js
|
2023-08-24 23:30:08 +08:00
|
|
|
$(GZIP) web_root/*
|
2023-05-26 22:48:20 +08:00
|
|
|
$(CC) ../../test/pack.c -o $(PACK)
|
2023-08-24 23:30:08 +08:00
|
|
|
$(PACK) web_root/* certs/* > $@
|
|
|
|
$(GZIP) -d web_root/*
|
2023-05-26 22:48:20 +08:00
|
|
|
|
|
|
|
mbedtls:
|
2023-02-21 23:07:48 +08:00
|
|
|
git clone --depth 1 -b v2.28.2 https://github.com/mbed-tls/mbedtls $@
|
2023-06-01 20:48:20 +08:00
|
|
|
|
|
|
|
ifeq ($(TLS), mbedtls)
|
2023-07-25 20:07:28 +08:00
|
|
|
CFLAGS += -DMG_TLS=MG_TLS_MBED -Wno-conversion -Imbedtls/include
|
2023-06-01 20:48:20 +08:00
|
|
|
CFLAGS += -DMBEDTLS_CONFIG_FILE=\"mbedtls_config.h\" mbedtls/library/*.c
|
|
|
|
$(PROG): mbedtls
|
|
|
|
endif
|
2023-05-26 22:48:20 +08:00
|
|
|
|
|
|
|
# Cleanup. Delete built program and all build artifacts
|
|
|
|
clean:
|
|
|
|
$(DELETE) $(PROG) $(PACK) *.o *.obj *.exe *.dSYM mbedtls
|