mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-24 02:59:01 +08:00
98 lines
3.7 KiB
Makefile
98 lines
3.7 KiB
Makefile
# This file is part of Mongoose project, http://code.google.com/p/mongoose
|
|
# $Id: Makefile 473 2009-09-02 11:20:06Z valenok $
|
|
|
|
PROG= mongoose
|
|
|
|
all:
|
|
@echo "make (linux|bsd|solaris|mac|windows|mingw)"
|
|
|
|
# Possible COPT values: (in brackets are rough numbers for 'gcc -O2' on i386)
|
|
# -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)
|
|
# -DCONFIG_FILE=\"file\" - use `file' as the default config file
|
|
# -DNO_SSI - disable SSI support (-4kb)
|
|
# -DHAVE_STRTOUI64 - use system strtoui64() function for strtoull()
|
|
|
|
|
|
##########################################################################
|
|
### UNIX build: linux, bsd, mac, rtems
|
|
##########################################################################
|
|
|
|
CFLAGS= -W -Wall -std=c99 -pedantic -Os -fomit-frame-pointer $(COPT)
|
|
MAC_SHARED= -flat_namespace -bundle -undefined suppress
|
|
LINFLAGS= -D_POSIX_SOURCE -D_BSD_SOURCE -D_FILE_OFFSET_BITS=64 \
|
|
-D_LARGEFILE_SOURCE -ldl -lpthread $(CFLAGS)
|
|
LIB= _$(PROG).so
|
|
|
|
linux:
|
|
$(CC) $(LINFLAGS) mongoose.c -shared -fPIC -fpic -s -o $(LIB)
|
|
$(CC) $(LINFLAGS) mongoose.c main.c -s -o $(PROG)
|
|
|
|
bsd:
|
|
$(CC) $(CFLAGS) mongoose.c -shared -lpthread -s -fpic -fPIC -o $(LIB)
|
|
$(CC) $(CFLAGS) mongoose.c main.c -lpthread -s -o $(PROG)
|
|
|
|
mac:
|
|
$(CC) $(CFLAGS) $(MAC_SHARED) mongoose.c -lpthread -o $(LIB)
|
|
$(CC) $(CFLAGS) mongoose.c main.c -lpthread -o $(PROG)
|
|
|
|
solaris:
|
|
gcc $(CFLAGS) mongoose.c -lpthread -lnsl \
|
|
-lsocket -s -fpic -fPIC -shared -o $(LIB)
|
|
gcc $(CFLAGS) mongoose.c main.c -lpthread -lnsl -lsocket -s -o $(PROG)
|
|
|
|
|
|
##########################################################################
|
|
### WINDOWS build: Using Visual Studio or Mingw
|
|
##########################################################################
|
|
|
|
# Using Visual Studio Express
|
|
# 1. Download and install Visual Studio Express 2008 to c:\msvc8
|
|
# 2. Download and install Windows SDK to c:\sdk
|
|
# 3. Go to c:\msvc8\vc\bin and start "VIsual Studio 2008 Command prompt"
|
|
# (or Itanium/amd64 command promt to build x64 version)
|
|
# 4. In the command prompt, go to mongoose directory and do "nmake windows"
|
|
|
|
#WINDBG= /Zi /DDEBUG /Od /DDEBUG
|
|
WINDBG= /DNDEBUG /Os
|
|
WINFLAGS= /MT /TC /nologo /W4 $(WINDBG)
|
|
windows:
|
|
cl $(WINFLAGS) mongoose.c /link /incremental:no /DLL \
|
|
/DEF:win32\dll.def /out:_$(PROG).dll ws2_32.lib
|
|
cl $(WINFLAGS) mongoose.c main.c /link /incremental:no \
|
|
/out:$(PROG).exe ws2_32.lib
|
|
|
|
# Build for Windows under MinGW
|
|
#MINGWDBG= -DDEBUG -O0
|
|
MINGWDBG= -DNDEBUG -Os
|
|
MINGWOPT= -W -Wall -mthreads -Wl,--subsystem,console $(MINGWDBG) -DHAVE_STDINT
|
|
mingw:
|
|
gcc $(MINGWOPT) mongoose.c -lws2_32 \
|
|
-shared -Wl,--out-implib=$(PROG).lib -o _$(PROG).dll
|
|
gcc $(MINGWOPT) mongoose.c main.c -lws2_32 -ladvapi32 -o $(PROG).exe
|
|
|
|
|
|
##########################################################################
|
|
### Manuals, cleanup, test, release
|
|
##########################################################################
|
|
|
|
man:
|
|
cat mongoose.1 | tbl | groff -man -Tascii | col -b > mongoose.1.txt
|
|
cat mongoose.1 | tbl | groff -man -Tascii | less
|
|
|
|
# "TEST=unit make test" - perform unit test only
|
|
# "TEST=embedded" - test embedded API by building and testing test/embed.c
|
|
# "TEST=basic_tests" - perform basic tests only (no CGI, SSI..)
|
|
test: do_test
|
|
do_test:
|
|
perl test/test.pl $(TEST)
|
|
|
|
release: clean
|
|
F=mongoose-`perl -lne '/define\s+MONGOOSE_VERSION\s+"(\S+)"/ and print $$1' mongoose.c`.tgz ; cd .. && tar --exclude \*.svn --exclude \*.swp --exclude \*.nfs\* --exclude win32 -czf x mongoose && mv x mongoose/$$F
|
|
|
|
clean:
|
|
rm -rf *.o *.core $(PROG) *.obj $(PROG).1.txt *.dSYM *.tgz
|