add a makefile config that's not in version control

This commit is contained in:
River Tarnell 2008-08-07 14:28:45 +00:00
parent 912ddf6f47
commit 649c1b8bef
2 changed files with 20 additions and 2 deletions

View file

@ -1,3 +1,5 @@
include makefile.config
CXX = g++
CXXFLAGS = -O3 -W -Wall
BOOST_INCLUDES = /opt/boost/include/boost-1_35
@ -6,8 +8,8 @@ BOOST_TAG = -gcc34-mt
ICU_INCLUDES = /opt/icu/include
ICU_LIBS = /opt/icu/lib
CPPFLAGS = -I$(BOOST_INCLUDES) -I$(ICU_INCLUDES)
LDFLAGS = -L$(BOOST_LIBS) -L$(ICU_LIBS) -R$(ICU_LIBS) -R$(BOOST_LIBS)
CPPFLAGS = $(EXTRA_CPPFLAGS)
LDFLAGS = $(EXTRA_LDFLAGS)
LIBS = -lboost_regex$(BOOST_TAG) -licuuc -licui18n -licudata -licui18n

View file

@ -0,0 +1,16 @@
# The C++ compiler
CXX = g++
# Flags for the compiler.
CXXFLAGS = -O3 -W -Wall
# Set this to the 'tag' your Boost libraries were built with,
# or the empty string if none.
#BOOST_TAG = -gcc34-mt
BOOST_TAG =
# Extra linker flags - if libraries are in strange places
EXTRA_LDFLAGS = -L/opt/icu/lib -L/opt/boost/lib -R/opt/icu/lib:/opt/boost/lib
# Extra preprocessor flags
EXTRA_CPPFLAGS = -I/opt/boost/include/boost-1_35 -I/opt/icu/include