Skip to content

Commit

Permalink
Add linux and mac makefiles
Browse files Browse the repository at this point in the history
Use original makefiles just update the BOOST_VERSION, #1.
  • Loading branch information
skodapetr committed Jul 17, 2018
1 parent e402c03 commit fe4782b
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 0 deletions.
9 changes: 9 additions & 0 deletions build/linux/debug/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
BASE=/usr/local
BOOST_VERSION=1_67
BOOST_INCLUDE = $(BASE)/include
C_PLATFORM=-static -pthread
GPP=/usr/local/bin/g++
C_OPTIONS= -g
BOOST_LIB_VERSION=

include ../../makefile_common
Empty file added build/linux/debug/dependencies
Empty file.
9 changes: 9 additions & 0 deletions build/linux/release/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
BASE=/usr/local
BOOST_VERSION=1_67
BOOST_INCLUDE = $(BASE)/include
C_PLATFORM=-static -pthread
GPP=/usr/local/bin/g++
C_OPTIONS= -O3 -DNDEBUG
BOOST_LIB_VERSION=

include ../../makefile_common
Empty file.
9 changes: 9 additions & 0 deletions build/mac/debug/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
BASE=/usr/local
BOOST_VERSION=1_67
BOOST_INCLUDE = $(BASE)/include
C_PLATFORM=-arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.4
GPP=/usr/bin/g++
C_OPTIONS= -g
BOOST_LIB_VERSION=

include ../../makefile_common
Empty file added build/mac/debug/dependencies
Empty file.
9 changes: 9 additions & 0 deletions build/mac/release/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
BASE=/usr/local
BOOST_VERSION=1_67
BOOST_INCLUDE = $(BASE)/include
C_PLATFORM=-arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.4
GPP=/usr/bin/g++
C_OPTIONS= -O3 -DNDEBUG
BOOST_LIB_VERSION=

include ../../makefile_common
Empty file added build/mac/release/dependencies
Empty file.

0 comments on commit fe4782b

Please sign in to comment.