mongoose/examples/http-server/Makefile

28 lines
907 B
Makefile
Raw Normal View History

SOURCES = main.c mongoose.c # Source code files
CFLAGS = -W -Wall -Wextra -g -I. # Build options
2020-12-11 01:39:40 +08:00
# Mongoose build options. See https://mongoose.ws/documentation/#build-options
CFLAGS_MONGOOSE += -DMG_HTTP_DIRLIST_TIME=1 -DMG_ENABLE_SSI=1
CFLAGS_MONGOOSE += -DMG_ENABLE_LINES=1 -DMG_ENABLE_IPV6=1
2020-12-11 01:39:40 +08:00
ifeq ($(OS),Windows_NT)
# Windows settings. Assume MinGW compiler. To use VC: make CC=cl CFLAGS=/MD
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
else
# Mac, Linux
PROG ?= example
DELETE = rm -rf
endif
2020-12-11 01:39:40 +08:00
all: $(PROG)
$(RUN) ./$(PROG) $(ARGS)
2020-12-11 01:39:40 +08:00
$(PROG): $(SOURCES)
$(CC) $(SOURCES) $(CFLAGS) $(CFLAGS_MONGOOSE) $(CFLAGS_EXTRA) -o $@
2020-12-11 01:39:40 +08:00
clean:
$(DELETE) $(PROG) *.o *.obj *.exe *.dSYM