2013-01-26 04:27:52 +08:00
# This Makefile is part of Mongoose web server project,
# https://github.com/valenok/mongoose
#
# Example custom build:
# COPT="-g -O0 -DNO_SSL_DL -DUSE_LUA -llua -lcrypto -lssl" make linux
#
# Flags are:
2012-08-19 19:22:28 +08:00
# -DHAVE_MD5 - use system md5 library (-2kb)
# -DNDEBUG - strip off all debug code (-5kb)
# -DDEBUG - build debug version (very noisy) (+7kb)
# -DNO_CGI - disable CGI support (-5kb)
# -DNO_SSL - disable SSL functionality (-2kb)
2012-09-28 06:58:35 +08:00
# -DNO_SSL_DL - link against system libssl library (-1kb)
2012-08-19 19:22:28 +08:00
# -DCONFIG_FILE=\"file\" - use `file' as the default config file
# -DSSL_LIB=\"libssl.so.<version>\" - use system versioned SSL shared object
2010-11-29 21:46:42 +08:00
# -DCRYPTO_LIB=\"libcrypto.so.<version>\" - use system versioned CRYPTO so
2012-09-28 06:58:35 +08:00
# -DUSE_LUA - embed Lua in Mongoose (+100kb)
2010-05-04 04:46:42 +08:00
2013-01-26 04:27:52 +08:00
PROG = mongoose
CFLAGS = -std= c99 -O2 -W -Wall -pedantic -pthread $( COPT)
2010-05-04 04:46:42 +08:00
2012-10-02 05:24:22 +08:00
# To build with Lua, download and unzip Lua 5.2.1 source code into the
2013-01-31 21:38:32 +08:00
# mongoose directory, and then add $(LUA_SOURCES) to CFLAGS
2012-09-27 06:37:03 +08:00
LUA = lua-5.2.1/src
2013-01-26 04:27:52 +08:00
LUA_SOURCES = $( LUA) /lapi.c $( LUA) /lcode.c $( LUA) /lctype.c \
$( LUA) /ldebug.c $( LUA) /ldo.c $( LUA) /ldump.c \
$( LUA) /lfunc.c $( LUA) /lgc.c $( LUA) /llex.c \
$( LUA) /lmem.c $( LUA) /lobject.c $( LUA) /lopcodes.c \
$( LUA) /lparser.c $( LUA) /lstate.c $( LUA) /lstring.c \
$( LUA) /ltable.c $( LUA) /ltm.c $( LUA) /lundump.c \
$( LUA) /lvm.c $( LUA) /lzio.c $( LUA) /lauxlib.c \
$( LUA) /lbaselib.c $( LUA) /lbitlib.c $( LUA) /lcorolib.c \
$( LUA) /ldblib.c $( LUA) /liolib.c $( LUA) /lmathlib.c \
$( LUA) /loslib.c $( LUA) /lstrlib.c $( LUA) /ltablib.c \
$( LUA) /loadlib.c $( LUA) /linit.c
LUA_OBJECTS = $( LUA_SOURCES:%.c= %.o)
2012-09-27 06:37:03 +08:00
2013-01-26 04:27:52 +08:00
# Using Visual Studio 6.0. To build Mongoose:
# Set MSVC variable below to where VS 6.0 is installed on your system
# Run "PATH_TO_VC6\bin\nmake windows"
2013-01-31 21:38:32 +08:00
MSVC = ../vc6
2013-01-28 04:48:52 +08:00
#DBG = /Zi /Od
DBG = /DNDEBUG /O1
2013-01-31 21:38:32 +08:00
CL = $( MSVC) /bin/cl /MD /TC /nologo $( DBG) /Gz /W3 \
2013-01-26 04:27:52 +08:00
/I$( MSVC) /include /I$( LUA) /I. /I$( YASSL) /I$( YASSL) /cyassl /GA
MSLIB = /link /incremental:no /libpath:$( MSVC) /lib /machine:IX86 \
2013-01-31 21:38:32 +08:00
user32.lib shell32.lib comdlg32.lib ws2_32.lib advapi32.lib
2013-01-26 04:27:52 +08:00
# Stock windows binary builds with Lua and YASSL library.
2013-01-28 04:48:52 +08:00
YASSL = ../cyassl-2.4.6
2013-01-26 04:27:52 +08:00
YASSL_FLAGS = -I $( YASSL) -I $( YASSL) /cyassl \
-D _LIB -D OPENSSL_EXTRA -D HAVE_ERRNO_H \
-D HAVE_GETHOSTBYNAME -D HAVE_INET_NTOA -D HAVE_LIMITS_H \
-D HAVE_MEMSET -D HAVE_SOCKET -D HAVE_STDDEF_H -D HAVE_STDLIB_H \
-D HAVE_STRING_H -D HAVE_SYS_STAT_H -D HAVE_SYS_TYPES_H
YASSL_SOURCES = \
$( YASSL) /src/internal.c $( YASSL) /src/io.c $( YASSL) /src/keys.c \
$( YASSL) /src/ssl.c $( YASSL) /src/tls.c $( YASSL) /ctaocrypt/src/hmac.c \
$( YASSL) /ctaocrypt/src/random.c $( YASSL) /ctaocrypt/src/sha.c \
$( YASSL) /ctaocrypt/src/sha256.c $( YASSL) /ctaocrypt/src/logging.c \
$( YASSL) /ctaocrypt/src/error.c $( YASSL) /ctaocrypt/src/rsa.c \
$( YASSL) /ctaocrypt/src/des3.c $( YASSL) /ctaocrypt/src/asn.c \
$( YASSL) /ctaocrypt/src/coding.c $( YASSL) /ctaocrypt/src/arc4.c \
$( YASSL) /ctaocrypt/src/md4.c $( YASSL) /ctaocrypt/src/md5.c \
$( YASSL) /ctaocrypt/src/dh.c $( YASSL) /ctaocrypt/src/dsa.c \
$( YASSL) /ctaocrypt/src/pwdbased.c $( YASSL) /ctaocrypt/src/aes.c \
$( YASSL) /ctaocrypt/src/md2.c $( YASSL) /ctaocrypt/src/ripemd.c \
$( YASSL) /ctaocrypt/src/sha512.c $( YASSL) /src/sniffer.c \
$( YASSL) /ctaocrypt/src/rabbit.c $( YASSL) /ctaocrypt/src/misc.c \
$( YASSL) /ctaocrypt/src/tfm.c $( YASSL) /ctaocrypt/src/integer.c \
$( YASSL) /ctaocrypt/src/ecc.c $( YASSL) /src/ocsp.c $( YASSL) /src/crl.c \
$( YASSL) /ctaocrypt/src/hc128.c $( YASSL) /ctaocrypt/src/memory.c
all :
@echo "make (linux|bsd|solaris|mac|windows|mingw|cygwin)"
2010-05-04 04:46:42 +08:00
2010-12-01 17:25:12 +08:00
# Make sure that the compiler flags come last in the compilation string.
# If not so, this can break some on some Linux distros which use
# "-Wl,--as-needed" turned on by default in cc command.
# Also, this is turned in many other distros in static linkage builds.
2010-05-04 04:46:42 +08:00
linux :
2013-01-22 01:51:56 +08:00
$( CC) mongoose.c main.c -o $( PROG) -ldl $( CFLAGS)
2010-05-04 04:46:42 +08:00
2013-01-22 01:51:56 +08:00
mac : bsd
2010-05-04 04:46:42 +08:00
bsd :
2013-01-22 01:51:56 +08:00
$( CC) mongoose.c main.c -o $( PROG) $( CFLAGS)
2010-05-04 04:46:42 +08:00
2013-01-26 04:27:52 +08:00
bsd_yassl :
2013-02-03 00:42:01 +08:00
$( CC) mongoose.c main.c build/lsqlite3.c build/sqlite3.c -o $( PROG) \
$( CFLAGS) -I$( LUA) -Ibuild \
$( YASSL_SOURCES) $( YASSL_FLAGS) -DNO_SSL_DL \
$( LUA_SOURCES) -DUSE_LUA -DUSE_LUA_SQLITE3 -DLUA_COMPAT_ALL
2013-01-26 04:27:52 +08:00
2013-01-22 01:51:56 +08:00
solaris :
$( CC) mongoose.c main.c -lnsl -lsocket -o $( PROG) $( CFLAGS)
2013-01-17 07:43:06 +08:00
2013-02-06 01:59:16 +08:00
# For codesign to work in non-interactive mode, unlock login keychain:
# security unlock ~/Library/Keychains/login.keychain
# See e.g. http://lists.apple.com/archives/apple-cdsa/2008/Jan/msg00027.html
2013-01-17 07:43:06 +08:00
cocoa :
2013-02-03 00:42:01 +08:00
$( CC) mongoose.c main.c build/lsqlite3.c build/sqlite3.c \
-DUSE_COCOA $( CFLAGS) -I$( LUA) -Ibuild \
$( YASSL_SOURCES) $( YASSL_FLAGS) -DNO_SSL_DL \
$( LUA_SOURCES) -DUSE_LUA -DUSE_LUA_SQLITE3 -DLUA_COMPAT_ALL \
-framework Cocoa -ObjC -arch i386 -arch x86_64 -o Mongoose
2013-01-17 07:43:06 +08:00
V = ` perl -lne '/define\s+MONGOOSE_VERSION\s+"(\S+)"/ and print $$1' mongoose.c` ; DIR = dmg/Mongoose.app && rm -rf $$ DIR && mkdir -p $$ DIR/Contents/{ MacOS,Resources} && install -m 644 build/mongoose_*.png $$ DIR/Contents/Resources/ && install -m 644 build/Info.plist $$ DIR/Contents/ && install -m 755 Mongoose $$ DIR/Contents/MacOS/ && ln -fs /Applications dmg/ ; hdiutil create Mongoose_$$ V.dmg -volname " Mongoose $$ V " -srcfolder dmg -ov #; rm -rf dmg
2010-05-04 04:46:42 +08:00
2013-01-31 21:38:32 +08:00
u :
$( CC) test/unit_test.c -o unit_test -I. -I$( LUA) $( LUA_SOURCES) \
$( CFLAGS) -g -O0
2013-01-22 16:59:13 +08:00
./unit_test
2010-05-04 04:46:42 +08:00
2013-01-31 21:38:32 +08:00
w :
2013-02-01 21:53:31 +08:00
$( CL) test/unit_test.c $( LUA_SOURCES) \
$( YASSL_SOURCES) $( YASSL_FLAGS) /DNO_SSL_DL \
2013-01-31 21:38:32 +08:00
$( MSLIB) /out:unit_test.exe
2013-01-22 16:59:13 +08:00
./unit_test.exe
2013-01-31 21:38:32 +08:00
windows :
2013-01-03 02:21:46 +08:00
$( MSVC) /bin/rc build\r es.rc
2013-01-31 21:38:32 +08:00
$( CL) main.c mongoose.c build/lsqlite3.c build/sqlite3.c \
$( YASSL_SOURCES) $( YASSL_FLAGS) /DNO_SSL_DL \
$( LUA_SOURCES) /DUSE_LUA /DUSE_LUA_SQLITE3 /DLUA_COMPAT_ALL \
$( MSLIB) build\r es.res /out:$( PROG) .exe /subsystem:windows
2010-05-04 04:46:42 +08:00
# Build for Windows under MinGW
2012-08-19 19:22:28 +08:00
#MINGWDBG= -DDEBUG -O0 -ggdb
2010-05-04 04:46:42 +08:00
MINGWDBG = -DNDEBUG -Os
2012-09-14 00:39:02 +08:00
MINGWOPT = -W -Wall -mthreads -Wl,--subsystem,console $( MINGWDBG) -DHAVE_STDINT $( GCC_WARNINGS) $( COPT)
2010-05-04 04:46:42 +08:00
mingw :
2013-01-03 02:21:46 +08:00
windres build\r es.rc build\r es.o
2012-08-19 19:22:28 +08:00
$( CC) $( MINGWOPT) mongoose.c -lws2_32 \
2012-09-22 19:52:47 +08:00
-shared -Wl,--out-implib= $( PROG) .lib -o $( PROG) .dll
2013-01-18 21:22:44 +08:00
$( CC) $( MINGWOPT) mongoose.c main.c build\r es.o \
-lws2_32 -ladvapi32 -lcomdlg32 -o $( PROG) .exe
2010-05-04 04:46:42 +08:00
2012-09-27 07:33:33 +08:00
# Build for Windows under Cygwin
#CYGWINDBG= -DDEBUG -O0 -ggdb
CYGWINDBG = -DNDEBUG -Os
CYGWINOPT = -W -Wall -mthreads -Wl,--subsystem,console $( CYGWINDBG) -DHAVE_STDINT $( GCC_WARNINGS) $( COPT)
cygwin :
2013-01-03 02:21:46 +08:00
windres ./build/res.rc ./build/res.o
2012-09-27 07:33:33 +08:00
$( CC) $( CYGWINOPT) mongoose.c -lws2_32 \
-shared -Wl,--out-implib= $( PROG) .lib -o $( PROG) .dll
2013-01-03 02:21:46 +08:00
$( CC) $( CYGWINOPT) -Ibuild mongoose.c main.c ./build/res.o \
-lws2_32 -ladvapi32 -o $( PROG) .exe
2010-05-04 04:46:42 +08:00
2012-08-19 19:22:28 +08:00
tests :
2010-05-04 04:46:42 +08:00
perl test/test.pl $( TEST)
2013-02-03 00:42:01 +08:00
tarball : clean
2013-01-10 05:21:04 +08:00
F = mongoose-` perl -lne '/define\s+MONGOOSE_VERSION\s+"(\S+)"/ and print $$1' mongoose.c` .tgz ; cd .. && tar -czf x mongoose/{ LICENSE,Makefile,examples,test,build,*.[ ch] ,*.md} && mv x mongoose/$$ F
2010-05-04 04:46:42 +08:00
2013-02-03 00:42:01 +08:00
release : tarball cocoa
wine make windows
V = ` perl -lne '/define\s+MONGOOSE_VERSION\s+"(\S+)"/ and print $$1' mongoose.c` ; upx mongoose.exe; cp mongoose.exe mongoose-$$ V.exe; cp mongoose.exe mongoose_php_bundle/; zip -r mongoose_php_bundle_$$ V.zip mongoose_php_bundle/
2010-05-04 04:46:42 +08:00
clean :
2013-01-18 18:43:52 +08:00
cd examples && $( MAKE) clean
rm -rf *.o *.core $( PROG) *.obj *.so $( PROG) .txt *.dSYM *.tgz \
$( PROG) .exe *.dll *.lib build/res.o build/res.RES *.dSYM