mirror of
https://github.com/cesanta/mongoose.git
synced 2025-06-07 01:07:19 +08:00
Add DLL building example
PUBLISHED_FROM=20d24793d766ee289c6bde95bd5ad01202cd614b
This commit is contained in:
parent
2deaf084e4
commit
b3fb21dacc
18
examples/dll/Makefile
Normal file
18
examples/dll/Makefile
Normal file
@ -0,0 +1,18 @@
|
||||
# This Makefile builds Mongoose as a shared library on different architectures.
|
||||
# To pass a specific build options, use CFLAGS_EXTRA, for example:
|
||||
# make macos CFLAGS_EXTRA="-DMG_ENABLE_COAP"
|
||||
|
||||
CFLAGS = -W -Wall -O2 $(CFLAGS_EXTRA)
|
||||
SRC = ../../mongoose.c
|
||||
|
||||
all:
|
||||
@echo "make <unix|windows> CFLAGS_EXTRA='-O2'"
|
||||
|
||||
unix:
|
||||
$(CC) $(SRC) -shared -o mongoose.so $(CFLAGS)
|
||||
|
||||
windows:
|
||||
cl $(SRC) /LD advapi32.lib $(CFLAGS_EXTRA)
|
||||
|
||||
clean:
|
||||
rm -rf *.so *.dll *.obj *.exe
|
Loading…
Reference in New Issue
Block a user