mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-24 02:59:01 +08:00
start moving to new skeleton
This commit is contained in:
parent
71a48ccde0
commit
5345c7260e
@ -1 +0,0 @@
|
||||
See detailed tutorial at https://mongoose.ws/tutorials/timers/
|
@ -1 +0,0 @@
|
||||
../../mongoose.c
|
@ -1 +0,0 @@
|
||||
../../mongoose.h
|
@ -1,7 +1,6 @@
|
||||
# Environment setup: https://mongoose.ws/documentation/tutorials/tools/
|
||||
|
||||
PROG ?= ./example # Program we are building
|
||||
PACK ?= ./pack # Packing executable
|
||||
DELETE = rm -rf # Command to remove files
|
||||
NPX ?= npx # For generating optimised tailwind CSS
|
||||
OUT ?= -o $(PROG) # Compiler argument for output file
|
||||
@ -16,7 +15,6 @@ CFLAGS_MONGOOSE += -DMG_ENABLE_PACKED_FS=1
|
||||
|
||||
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
|
||||
PACK = pack.exe # Packing executable
|
||||
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
|
||||
@ -48,4 +46,4 @@ packed_fs.c: $(wildcard web_root/*) $(wildcard certs/*) Makefile
|
||||
|
||||
# Cleanup. Delete built program and all build artifacts
|
||||
clean:
|
||||
$(DELETE) $(PROG) $(PACK) *.o *.obj *.exe *.dSYM mbedtls
|
||||
$(DELETE) $(PROG) *.o *.obj *.exe *.dSYM mbedtls
|
||||
|
1
tutorials/core/README.md
Normal file
1
tutorials/core/README.md
Normal file
@ -0,0 +1 @@
|
||||
See detailed tutorials at https://mongoose.ws/documentation/#core
|
1
tutorials/core/timers/README.md
Normal file
1
tutorials/core/timers/README.md
Normal file
@ -0,0 +1 @@
|
||||
See detailed tutorial at https://mongoose.ws/tutorials/core/timers/
|
1
tutorials/core/timers/mongoose.c
Symbolic link
1
tutorials/core/timers/mongoose.c
Symbolic link
@ -0,0 +1 @@
|
||||
../../../mongoose.c
|
1
tutorials/core/timers/mongoose.h
Symbolic link
1
tutorials/core/timers/mongoose.h
Symbolic link
@ -0,0 +1 @@
|
||||
../../../mongoose.h
|
@ -0,0 +1 @@
|
||||
See detailed tutorials at https://mongoose.ws/documentation/#http
|
@ -0,0 +1 @@
|
||||
See detailed tutorials at https://mongoose.ws/documentation/#mqtt
|
@ -0,0 +1 @@
|
||||
See detailed tutorials at https://mongoose.ws/documentation/#smtp
|
1
tutorials/tcp/README.md
Normal file
1
tutorials/tcp/README.md
Normal file
@ -0,0 +1 @@
|
||||
See detailed tutorials at https://mongoose.ws/documentation/#tcp
|
1
tutorials/tcpip_stack/README.md
Normal file
1
tutorials/tcpip_stack/README.md
Normal file
@ -0,0 +1 @@
|
||||
See detailed tutorials at https://mongoose.ws/documentation/#tcpip-stack
|
@ -0,0 +1 @@
|
||||
See detailed tutorials at https://mongoose.ws/documentation/#ssltls
|
@ -0,0 +1 @@
|
||||
See detailed tutorials at https://mongoose.ws/documentation/#udp
|
@ -0,0 +1 @@
|
||||
See detailed tutorials at https://mongoose.ws/documentation/#websocket
|
1
tutorials/webui/README.md
Normal file
1
tutorials/webui/README.md
Normal file
@ -0,0 +1 @@
|
||||
See detailed tutorials at https://mongoose.ws/documentation/#web-ui
|
Loading…
Reference in New Issue
Block a user