Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
mongoose
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
Gitlab has been updated. More info
here
.
Show more breadcrumbs
Ganil-acq
GANILinux
linux-service
library
mongoose
Commits
f4862b64
Commit
f4862b64
authored
11 years ago
by
Sergey Lyubka
Browse files
Options
Downloads
Patches
Plain Diff
defined ALL_WINOBJS and using it for windows build
parent
91fa767e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile
+30
-23
30 additions, 23 deletions
Makefile
with
30 additions
and
23 deletions
Makefile
+
30
−
23
View file @
f4862b64
...
@@ -22,6 +22,7 @@ CFLAGS = -std=c99 -O2 -W -Wall -pedantic -pthread $(COPT)
...
@@ -22,6 +22,7 @@ CFLAGS = -std=c99 -O2 -W -Wall -pedantic -pthread $(COPT)
# To build with Lua, download and unzip Lua 5.2.1 source code into the
# To build with Lua, download and unzip Lua 5.2.1 source code into the
# mongoose directory, and then add $(LUA_SOURCES) to CFLAGS
# mongoose directory, and then add $(LUA_SOURCES) to CFLAGS
LUA
=
lua-5.2.1/src
LUA
=
lua-5.2.1/src
LUA_FLAGS
=
-I
$(
LUA
)
-DLUA_COMPAT_ALL
LUA_SOURCES
=
$(
LUA
)
/lapi.c
$(
LUA
)
/lcode.c
$(
LUA
)
/lctype.c
\
LUA_SOURCES
=
$(
LUA
)
/lapi.c
$(
LUA
)
/lcode.c
$(
LUA
)
/lctype.c
\
$(
LUA
)
/ldebug.c
$(
LUA
)
/ldo.c
$(
LUA
)
/ldump.c
\
$(
LUA
)
/ldebug.c
$(
LUA
)
/ldo.c
$(
LUA
)
/ldump.c
\
$(
LUA
)
/lfunc.c
$(
LUA
)
/lgc.c
$(
LUA
)
/llex.c
\
$(
LUA
)
/lfunc.c
$(
LUA
)
/lgc.c
$(
LUA
)
/llex.c
\
...
@@ -34,17 +35,6 @@ LUA_SOURCES = $(LUA)/lapi.c $(LUA)/lcode.c $(LUA)/lctype.c \
...
@@ -34,17 +35,6 @@ LUA_SOURCES = $(LUA)/lapi.c $(LUA)/lcode.c $(LUA)/lctype.c \
$(
LUA
)
/loslib.c
$(
LUA
)
/lstrlib.c
$(
LUA
)
/ltablib.c
\
$(
LUA
)
/loslib.c
$(
LUA
)
/lstrlib.c
$(
LUA
)
/ltablib.c
\
$(
LUA
)
/loadlib.c
$(
LUA
)
/linit.c
$(
LUA
)
/loadlib.c
$(
LUA
)
/linit.c
# 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"
MSVC
=
../vc6
#DBG = /Zi /Od
DBG
=
/DNDEBUG /O1
CL
=
$(
MSVC
)
/bin/cl /MD /TC /nologo
$(
DBG
)
/Gz /W3
\
/I
$(
MSVC
)
/include /I
$(
LUA
)
/I. /I
$(
YASSL
)
/I
$(
YASSL
)
/cyassl /GA
MSLIB
=
/link /incremental:no /libpath:
$(
MSVC
)
/lib /machine:IX86
\
user32.lib shell32.lib comdlg32.lib ws2_32.lib advapi32.lib
# Stock windows binary builds with Lua and YASSL library.
# Stock windows binary builds with Lua and YASSL library.
YASSL
=
../cyassl-2.4.6
YASSL
=
../cyassl-2.4.6
YASSL_FLAGS
=
-I
$(
YASSL
)
-I
$(
YASSL
)
/cyassl
\
YASSL_FLAGS
=
-I
$(
YASSL
)
-I
$(
YASSL
)
/cyassl
\
...
@@ -70,9 +60,32 @@ YASSL_SOURCES = \
...
@@ -70,9 +60,32 @@ YASSL_SOURCES = \
$(
YASSL
)
/ctaocrypt/src/ecc.c
$(
YASSL
)
/src/ocsp.c
$(
YASSL
)
/src/crl.c
\
$(
YASSL
)
/ctaocrypt/src/ecc.c
$(
YASSL
)
/src/ocsp.c
$(
YASSL
)
/src/crl.c
\
$(
YASSL
)
/ctaocrypt/src/hc128.c
$(
YASSL
)
/ctaocrypt/src/memory.c
$(
YASSL
)
/ctaocrypt/src/hc128.c
$(
YASSL
)
/ctaocrypt/src/memory.c
ALL_SOURCES
=
main.c mongoose.c build/sqlite3.c build/lsqlite3.c
\
$(
LUA_SOURCES
)
$(
YASSL_SOURCES
)
ALL_OBJECTS
=
$(
ALL_SOURCES:%.c
=
%.o
)
ALL_WINOBJS
=
$(
ALL_SOURCES:%.c
=
%.obj
)
FLAGS
=
-DNO_SSL_DL
-DUSE_LUA
-DUSE_LUA_SQLITE3
$(
YASSL_FLAGS
)
$(
LUA_FLAGS
)
# 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"
MSVC
=
../vc6
#DBG = /Zi /Od
DBG
=
/DNDEBUG /O1
CL
=
$(
MSVC
)
/bin/cl /MD /TC /nologo
$(
DBG
)
/Gz /W3 /GA /I
$(
MSVC
)
/include
LINK
=
$(
MSVC
)
/bin/link /incremental:no /libpath:
$(
MSVC
)
/lib /machine:IX86
\
user32.lib shell32.lib comdlg32.lib ws2_32.lib advapi32.lib
all
:
all
:
@
echo
"make (linux|bsd|solaris|mac|windows|mingw|cygwin)"
@
echo
"make (linux|bsd|solaris|mac|windows|mingw|cygwin)"
%.obj
:
%.c
$(
CL
)
/c
$(
FLAGS
)
/Fo
$@
$<
%.o
:
%.c
$(
CC
)
-o
$@
$<
-c
$(
FLAGS
)
$(
CFLAGS
)
# To build with lua, make sure you have Lua unpacked into lua-5.2.1 directory
# To build with lua, make sure you have Lua unpacked into lua-5.2.1 directory
linux_lua
:
linux_lua
:
$(
CC
)
mongoose.c main.c build/lsqlite3.c build/sqlite3.c
$(
LUA_SOURCES
)
-DUSE_LUA
-DUSE_LUA_SQLITE3
-DLUA_COMPAT_ALL
-I
$(
LUA
)
-o
$(
PROG
)
-ldl
$(
CFLAGS
)
$(
CC
)
mongoose.c main.c build/lsqlite3.c build/sqlite3.c
$(
LUA_SOURCES
)
-DUSE_LUA
-DUSE_LUA_SQLITE3
-DLUA_COMPAT_ALL
-I
$(
LUA
)
-o
$(
PROG
)
-ldl
$(
CFLAGS
)
...
@@ -88,11 +101,8 @@ mac: bsd
...
@@ -88,11 +101,8 @@ mac: bsd
bsd
:
bsd
:
$(
CC
)
mongoose.c main.c
-o
$(
PROG
)
$(
CFLAGS
)
$(
CC
)
mongoose.c main.c
-o
$(
PROG
)
$(
CFLAGS
)
bsd_yassl
:
bsd_lua
:
$(ALL_OBJECTS)
$(
CC
)
mongoose.c main.c build/lsqlite3.c build/sqlite3.c
-o
$(
PROG
)
\
$(
CC
)
$(
ALL_OBJECTS
)
-o
$@
$(
CFLAGS
)
-I
$(
LUA
)
-Ibuild
\
$(
YASSL_SOURCES
)
$(
YASSL_FLAGS
)
-DNO_SSL_DL
\
$(
LUA_SOURCES
)
-DUSE_LUA
-DUSE_LUA_SQLITE3
-DLUA_COMPAT_ALL
solaris
:
solaris
:
$(
CC
)
mongoose.c main.c
-lnsl
-lsocket
-o
$(
PROG
)
$(
CFLAGS
)
$(
CC
)
mongoose.c main.c
-lnsl
-lsocket
-o
$(
PROG
)
$(
CFLAGS
)
...
@@ -121,12 +131,9 @@ w:
...
@@ -121,12 +131,9 @@ w:
$(
MSLIB
)
/out:unit_test.exe
$(
MSLIB
)
/out:unit_test.exe
./unit_test.exe
./unit_test.exe
windows
:
windows
:
$(ALL_WINOBJS)
$(
MSVC
)
/bin/rc build
\r
es.rc
$(
MSVC
)
/bin/rc build/res.rc
$(
CL
)
main.c mongoose.c build/lsqlite3.c build/sqlite3.c
\
$(
LINK
)
/nologo
$(
ALL_WINOBJS
)
build/res.res /out:
$(
PROG
)
.exe
$(
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
# Build for Windows under MinGW
# Build for Windows under MinGW
#MINGWDBG= -DDEBUG -O0 -ggdb
#MINGWDBG= -DDEBUG -O0 -ggdb
...
@@ -164,5 +171,5 @@ clean:
...
@@ -164,5 +171,5 @@ clean:
cd
examples
&&
$(
MAKE
)
clean
cd
examples
&&
$(
MAKE
)
clean
rm
-rf
*
.o
*
.core
$(
PROG
)
*
.obj
*
.so
$(
PROG
)
.txt
*
.dSYM
*
.tgz
\
rm
-rf
*
.o
*
.core
$(
PROG
)
*
.obj
*
.so
$(
PROG
)
.txt
*
.dSYM
*
.tgz
\
$(
PROG
)
.exe
*
.dll
*
.lib build/res.o build/res.RES
*
.dSYM
*
.zip
*
.pdb
\
$(
PROG
)
.exe
*
.dll
*
.lib build/res.o build/res.RES
*
.dSYM
*
.zip
*
.pdb
\
*
.exe
*
.dmg
$(
LUA_SOURCES:%.c
=
%.obj
)
$(
YASSL_SOURCES:%.c
=
%.obj
)
*
.exe
*
.dmg
$(
ALL_OBJECTS
)
$(
ALL_WINOBJS
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment