mongoose/examples/embedded-filesystem/Makefile

55 lines
1.3 KiB
Makefile
Raw Normal View History

2023-02-16 05:04:48 +08:00
SOURCES = mongoose.c main.c packed_fs.c # Source code files
CFLAGS = -W -Wall -Wextra -g -I. # Build options
# Mongoose build options. See https://mongoose.ws/documentation/#build-options
CFLAGS_MONGOOSE += -DMG_ENABLE_PACKED_FS=1
2022-08-11 03:05:34 +08:00
FILES_TO_EMBED ?= $(wildcard web_root/*)
2023-02-16 05:04:48 +08:00
ifeq ($(OS),Windows_NT)
# Windows settings. Assume MinGW compiler. To use VC: make CC=cl CFLAGS=/MD OUT=/Feprog.exe
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
OUT ?= -o $(PROG) # Build output
2023-02-16 05:23:52 +08:00
PACK = pack.exe
2023-02-16 05:04:48 +08:00
else
# Mac, Linux
PROG ?= example
DELETE = rm -rf
OUT ?= -o $(PROG)
2023-02-16 05:23:52 +08:00
PACK = ./pack
2023-02-16 05:04:48 +08:00
endif
2022-08-11 03:05:34 +08:00
all: $(PROG)
2023-02-16 05:04:48 +08:00
$(RUN) ./$(PROG) $(ARGS)
2022-08-11 03:05:34 +08:00
$(PROG): $(SOURCES) $(FILES_TO_EMBED)
2023-02-16 05:23:52 +08:00
$(CC) ../../test/pack.c -o $(PACK)
$(PACK) $(FILES_TO_EMBED) > packed_fs.c
2023-02-16 05:04:48 +08:00
$(CC) $(SOURCES) $(CFLAGS) $(CFLAGS_MONGOOSE) $(CFLAGS_EXTRA) $(OUT)
2022-08-11 03:05:34 +08:00
clean:
2023-02-16 05:23:52 +08:00
$(DELETE) $(PROG) *.dSYM $(PACK)
2022-08-11 03:05:34 +08:00
.PHONY: compress expand gzipped plain all
2023-02-16 05:04:48 +08:00
# See tutorial
2022-08-11 03:05:34 +08:00
gzipped: compress
$(MAKE) all
plain: expand
$(MAKE) all
compress:
for file in $(FILES_TO_EMBED) ; do \
gzip -q $$file ; \
done
expand:
for file in $(FILES_TO_EMBED) ; do \
gunzip -q $$file ; \
done