mongoose/examples/tcp/Makefile

40 lines
1.7 KiB
Makefile
Raw Normal View History

2023-02-23 22:32:53 +08:00
PROG ?= example # Program we are building
2023-10-12 03:25:24 +08:00
PACK ?= ./pack # Packing executable
2023-02-23 22:32:53 +08:00
DELETE = rm -rf # Command to remove files
OUT ?= -o $(PROG) # Compiler argument for output file
2023-10-12 03:25:24 +08:00
SOURCES = main.c mongoose.c packed_fs.c # Source code files
2023-02-23 22:32:53 +08:00
CFLAGS = -W -Wall -Wextra -g -I. # Build options
2023-02-23 22:32:53 +08:00
# Mongoose build options. See https://mongoose.ws/documentation/#build-options
2023-10-12 03:25:24 +08:00
CFLAGS_MONGOOSE += -DMG_ENABLE_PACKED_FS=1
2023-02-23 22:32:53 +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
2023-10-12 03:25:24 +08:00
PACK = pack.exe # Packing executable
2023-02-23 22:32:53 +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
OUT ?= -o $(PROG) # Build output
MAKE += WINDOWS=1 CC=$(CC)
endif
2023-02-23 22:32:53 +08:00
all: $(PROG) # Default target. Build and run program
$(RUN) ./$(PROG) $(ARGS)
$(PROG): $(SOURCES) # Build program from sources
$(CC) $(SOURCES) $(CFLAGS) $(CFLAGS_MONGOOSE) $(CFLAGS_EXTRA) $(OUT)
2023-02-23 22:32:53 +08:00
clean: # Cleanup. Delete built program and all build artifacts
2023-10-12 03:39:07 +08:00
$(DELETE) $(PROG) *.o *.obj *.exe *.dSYM mbedtls $(PACK)
2023-10-12 03:25:24 +08:00
# Generate packed filesystem for serving credentials
packed_fs.c: $(wildcard certs/*) Makefile
$(CC) ../../test/pack.c -o $(PACK)
$(PACK) $(wildcard certs/*) > $@
2023-02-23 22:32:53 +08:00
# see https://mongoose.ws/tutorials/tls/#how-to-build for TLS build options
2023-02-23 22:32:53 +08:00
mbedtls: # Pull and build mbedTLS library
git clone --depth 1 -b v2.28.2 https://github.com/mbed-tls/mbedtls $@
$(MAKE) -C mbedtls/library