Update of /cvsroot/luabind/luabind/luabind/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20464
Modified Files:
Tag: luabind_rc_0_7
makefile
Log Message:
removed the -Wno-long-double build flag from the makefile
Index: makefile
===================================================================
RCS file: /cvsroot/luabind/luabind/luabind/test/makefile,v
retrieving revision 1.21
retrieving revision 1.21.2.1
diff -u -d -r1.21 -r1.21.2.1
--- makefile 28 Nov 2005 20:55:34 -0000 1.21
+++ makefile 11 Jan 2006 22:32:18 -0000 1.21.2.1
@@ -26,15 +26,13 @@
test_iterator.cpp \
-CPPFLAGS = -Wno-long-double
-
all: $(SOURCES:.cpp=.exe)
%.exe:%.o main.o
$(CXX) $? -o $@ -g -L$(LUA_PATH)/lib -L../lib -lluabind -llualib -llua
%.o:%.cpp
- $(CXX) -Wall -ftemplate-depth-100 -g $(CPPFLAGS) $(CONFIG) -I$(LUA_PATH)/include -I. -I- -I../ -I$(BOOST_ROOT) -c $? -o $@
+ $(CXX) -Wall -ftemplate-depth-100 -g $(CONFIG) -I$(LUA_PATH)/include -I. -I- -I../ -I$(BOOST_ROOT) -c $? -o $@
#just to force the tests to be run
test: $(SOURCES:.cpp=.dummy)
|