mongoose/examples/huge-response/Makefile

26 lines
1.2 KiB
Makefile
Raw Normal View History

2023-02-22 03:05:25 +08:00
PROG ?= example # Program we are building
DELETE = rm -rf # Command to remove files
OUT ?= -o $(PROG) # Compiler argument for output file
2023-02-21 03:02:15 +08:00
SOURCES = main.c mongoose.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_LINES=1
2023-02-22 03:05:25 +08:00
ifeq ($(OS),Windows_NT) # Windows settings. Assume MinGW compiler. To use VC: make CC=cl CFLAGS=/MD OUT=/Feprog.exe
2023-02-21 03:02:15 +08:00
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
endif
2021-12-27 11:25:28 +08:00
2023-02-22 03:05:25 +08:00
all: $(PROG) # Default target. Build and run program
2021-12-27 11:25:28 +08:00
$(RUN) ./$(PROG) $(ARGS)
2023-02-22 03:05:25 +08:00
$(PROG): $(SOURCES) # Build program from sources
2023-02-21 03:02:15 +08:00
$(CC) $(SOURCES) $(CFLAGS) $(CFLAGS_MONGOOSE) $(CFLAGS_EXTRA) $(OUT)
2021-12-27 11:25:28 +08:00
2023-02-22 03:05:25 +08:00
clean: # Cleanup. Delete built program and all build artifacts
2023-02-21 03:02:15 +08:00
$(DELETE) $(PROG) *.o *.obj *.exe *.dSYM