[luabind-cvs] luabind/luabind/test makefile,1.21,1.21.2.1
Brought to you by:
arvidn,
daniel_wallin
From: Arvid N. <ar...@us...> - 2006-01-11 22:32:31
|
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) |