Merge pull request #2071 from cesanta/standex

captive-dns
This commit is contained in:
Sergio R. Caprile 2023-02-15 14:27:15 -03:00 committed by GitHub
commit 9deaa81a72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 24 additions and 7 deletions

View File

@ -1,11 +1,26 @@
PROG ?= example
CFLAGS ?= -DMG_IO_SIZE=8192 -DMG_ENABLE_LINES
SOURCES = mongoose.c main.c
CFLAGS = -W -Wall -Wextra -g
# Mongoose build options. See https://mongoose.ws/documentation/#build-options
CFLAGS += -DMG_IO_SIZE=8192 -DMG_ENABLE_LINES
ifeq ($(OS),Windows_NT)
# Windows settings. Assume MinGW compiler
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
all: $(PROG)
$(DEBUGGER) ./$(PROG) $(ARGS)
$(RUN) ./$(PROG) $(ARGS)
$(PROG): main.c
$(CC) ../../mongoose.c -I../.. -W -Wall $(CFLAGS) -o $(PROG) main.c
$(PROG): $(SOURCES)
$(CC) $(SOURCES) $(CFLAGS) $(CFLAGS_EXTRA) -o $@
clean:
rm -rf $(PROG) *.o *.dSYM *.gcov *.gcno *.gcda *.obj *.exe *.ilk *.pdb
$(DELETE) $(PROG) *.dSYM pack tmp

View File

@ -1 +1 @@
See detailed tutorial at https://mongoose.ws/tutorials/captive-dns-portal/
See detailed tutorial at https://mongoose.ws/tutorials/captive-dns-server/

View File

@ -0,0 +1 @@
../../mongoose.c

View File

@ -0,0 +1 @@
../../mongoose.h