mongoose/examples/dll/Makefile
Alexander Alashkin eaef5bd133 Revert "Stop publish examples to mongoose repo"
This reverts commit 1a17e17c462bdd4e1d26d8742f8b7087273e04c2.

PUBLISHED_FROM=80028de308c9a021955d1425d2bfee8feb85f193
2017-02-06 14:08:59 +00:00

19 lines
455 B
Makefile

# 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