2009-10-10 20:14:04 +00:00
|
|
|
# Rules for Jamfile.jam
|
|
|
|
|
2009-10-28 20:08:43 +00:00
|
|
|
if ( $(toolset:I=^mingw) )
|
2009-10-10 20:14:04 +00:00
|
|
|
{
|
2009-10-28 20:08:43 +00:00
|
|
|
if ( $(configuration) = "debug" )
|
|
|
|
{
|
|
|
|
CCFLAGS += -D_DEBUG ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CCFLAGS += -DNDEBUG -O3 ;
|
|
|
|
}
|
2009-10-10 20:14:04 +00:00
|
|
|
|
2009-10-28 20:08:43 +00:00
|
|
|
actions ObjectAction
|
|
|
|
{
|
2009-10-28 22:22:19 +00:00
|
|
|
"%$(toolset)_PATH%\bin\gcc" -W -Wall -Wextra -Werror -pedantic -c $(>) -o $(<) $(CCFLAGS)
|
2009-10-28 20:08:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
actions LibraryAction
|
|
|
|
{
|
2009-10-28 22:22:19 +00:00
|
|
|
"%$(toolset)_PATH%\bin\ar" rc $(<) $(>)
|
2009-10-28 20:08:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
actions LinkAction
|
|
|
|
{
|
2009-10-28 22:22:19 +00:00
|
|
|
"%$(toolset)_PATH%\bin\g++" $(>) -o $(<) $(LDFLAGS)
|
2009-10-28 20:08:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
actions CoverageAction
|
|
|
|
{
|
2009-10-28 22:22:19 +00:00
|
|
|
"%$(toolset)_PATH%\bin\gcov" $(>:\\) $(GCOVFLAGS) | perl tests/gcov-filter.pl
|
2009-10-28 20:08:43 +00:00
|
|
|
}
|
2009-10-10 20:14:04 +00:00
|
|
|
}
|
2009-10-28 22:22:19 +00:00
|
|
|
else if ( $(toolset:I=^msvc) )
|
2009-10-10 20:14:04 +00:00
|
|
|
{
|
2009-10-28 20:08:43 +00:00
|
|
|
if ( $(configuration) = "debug" )
|
|
|
|
{
|
|
|
|
CCFLAGS += /D_DEBUG /MTd ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CCFLAGS += /DNDEBUG /Ox /MT ;
|
|
|
|
}
|
2009-10-10 20:14:04 +00:00
|
|
|
|
2009-10-28 20:08:43 +00:00
|
|
|
if ( $(toolset) != msvc6 )
|
|
|
|
{
|
|
|
|
CCFLAGS += /Wp64 /W4 ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CCFLAGS += /W3 ; # lots of warnings at W4 in standard library
|
|
|
|
}
|
|
|
|
|
|
|
|
actions ObjectAction
|
|
|
|
{
|
2009-10-28 22:22:19 +00:00
|
|
|
"%$(toolset)_PATH%\bin\cl.exe" /EHsc /WX /I"%$(toolset)_PATH%\include" /c $(>) /Fo$(<) /nologo $(CCFLAGS)
|
2009-10-28 20:08:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
actions LibraryAction
|
|
|
|
{
|
2009-10-28 22:22:19 +00:00
|
|
|
"%$(toolset)_PATH%\bin\lib.exe" /NOLOGO /OUT:$(<) $(>)
|
2009-10-28 20:08:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
actions LinkAction
|
|
|
|
{
|
2009-10-28 22:22:19 +00:00
|
|
|
"%$(toolset)_PATH%\bin\link.exe" /SUBSYSTEM:CONSOLE /NOLOGO /OUT:$(<) $(>) /LIBPATH:"%$(toolset)_PATH%\lib" /LIBPATH:"%$(toolset)_PATH%\PlatformSDK\lib" $(LDFLAGS)
|
|
|
|
}
|
|
|
|
|
|
|
|
actions CoverageAction
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ( $(toolset) = "ic8" )
|
|
|
|
{
|
|
|
|
msvc = "msvc7" ;
|
|
|
|
|
|
|
|
if ( $(configuration) = "debug" )
|
|
|
|
{
|
|
|
|
CCFLAGS += /D_DEBUG /MTd ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CCFLAGS += /DNDEBUG /Ox /MT ;
|
|
|
|
}
|
|
|
|
|
|
|
|
actions ObjectAction
|
|
|
|
{
|
|
|
|
"%$(toolset)_PATH%\bin\icl.exe" /EHsc /W4 /WX /Wport /Qwd981,444,280,383,909,304,167 /I"%$(msvc)_PATH%\include" /I"%$(toolset)_PATH%\include" /c $(>) /Fo$(<) /nologo $(CCFLAGS)
|
|
|
|
}
|
|
|
|
|
|
|
|
actions LibraryAction
|
|
|
|
{
|
|
|
|
"%$(msvc)_PATH%\bin\lib.exe" /NOLOGO /OUT:$(<) $(>)
|
|
|
|
}
|
|
|
|
|
|
|
|
actions LinkAction
|
|
|
|
{
|
|
|
|
"%$(msvc)_PATH%\bin\link.exe" /SUBSYSTEM:CONSOLE /NOLOGO /OUT:$(<) $(>) /LIBPATH:"%$(toolset)_PATH%\lib" /LIBPATH:"%$(msvc)_PATH%\lib" /LIBPATH:"%$(msvc)_PATH%\PlatformSDK\lib" $(LDFLAGS)
|
|
|
|
}
|
|
|
|
|
|
|
|
actions CoverageAction
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ( $(toolset:I=^dmc) )
|
|
|
|
{
|
|
|
|
if ( $(configuration) = "debug" )
|
|
|
|
{
|
|
|
|
CCFLAGS += -D_DEBUG ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CCFLAGS += -DNDEBUG ;
|
|
|
|
}
|
|
|
|
|
|
|
|
actions ObjectAction
|
|
|
|
{
|
|
|
|
"%$(toolset)_PATH%\bin\dmc.exe" -c -f -wx -Ae $(>) -o$(<)
|
|
|
|
}
|
|
|
|
|
|
|
|
actions LibraryAction
|
|
|
|
{
|
|
|
|
"%$(toolset)_PATH%\bin\lib.exe" -c $(<) $(>)
|
|
|
|
}
|
|
|
|
|
|
|
|
actions LinkAction
|
|
|
|
{
|
|
|
|
"%$(toolset)_PATH%\bin\link.exe" $(>:\\) , $(<:\\) , nul , $(LDFLAGS:\\)
|
2009-10-28 20:08:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
actions CoverageAction
|
|
|
|
{
|
|
|
|
}
|
2009-10-10 20:14:04 +00:00
|
|
|
}
|
|
|
|
|
2009-10-28 22:22:19 +00:00
|
|
|
actions screenoutput RunAction
|
2009-10-10 20:14:04 +00:00
|
|
|
{
|
|
|
|
$(>:\\)
|
|
|
|
}
|
|
|
|
|
2009-10-10 21:36:03 +00:00
|
|
|
actions quietly ignore MakeDirAction
|
2009-10-10 20:14:04 +00:00
|
|
|
{
|
|
|
|
mkdir $(<:\\) >nul 2>&1
|
|
|
|
}
|
|
|
|
|
2009-10-10 21:36:03 +00:00
|
|
|
actions quietly ignore DeleteAction
|
|
|
|
{
|
|
|
|
del /F $(>:\\) >nul 2>&1
|
|
|
|
}
|
|
|
|
|
2009-10-10 20:14:04 +00:00
|
|
|
rule MakeFileDir TARGET
|
|
|
|
{
|
|
|
|
local DIR = $(TARGET:D) ;
|
|
|
|
|
2009-10-10 21:36:03 +00:00
|
|
|
MakeDirAction $(DIR) ;
|
2009-10-10 20:14:04 +00:00
|
|
|
Needs $(TARGET) : $(DIR) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
rule Alias TARGET : SOURCE
|
|
|
|
{
|
|
|
|
NotFile $(TARGET) ;
|
|
|
|
Always $(TARGET) ;
|
|
|
|
Depends $(TARGET) : $(SOURCE) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
rule Object TARGET : SOURCE
|
|
|
|
{
|
|
|
|
HDRRULE on $(SOURCE) = C.HdrRule ;
|
|
|
|
HDRSCAN on $(SOURCE) = $(C.HDRPATTERN) ;
|
|
|
|
|
|
|
|
MakeFileDir $(TARGET) ;
|
|
|
|
ObjectAction $(TARGET) : $(SOURCE) ;
|
|
|
|
Depends $(TARGET) : $(SOURCE) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
rule Objects SOURCES
|
|
|
|
{
|
|
|
|
local OBJECTS ;
|
|
|
|
|
|
|
|
for SOURCE in $(SOURCES)
|
|
|
|
{
|
|
|
|
local OBJECT = $(BUILD)/$(SOURCE:S=.o) ;
|
|
|
|
|
|
|
|
Object $(OBJECT) : $(SOURCE) ;
|
|
|
|
OBJECTS += $(OBJECT) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $(OBJECTS) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
rule Library TARGET : SOURCES
|
|
|
|
{
|
|
|
|
# build object files
|
|
|
|
local OBJECTS = [ Objects $(SOURCES) ] ;
|
|
|
|
|
|
|
|
# build library
|
|
|
|
local LIBRARY = $(BUILD)/$(TARGET).a ;
|
|
|
|
|
|
|
|
MakeFileDir $(LIBRARY) ;
|
|
|
|
LibraryAction $(LIBRARY) : $(OBJECTS) ;
|
|
|
|
Depends $(LIBRARY) : $(OBJECTS) ;
|
|
|
|
|
|
|
|
# make alias
|
|
|
|
Alias $(TARGET) : $(LIBRARY) ;
|
|
|
|
|
|
|
|
# remember library path for linking
|
|
|
|
$(TARGET)_path = $(LIBRARY) ;
|
|
|
|
|
|
|
|
# remember library objects for coverage
|
|
|
|
$(TARGET)_objects = $(OBJECTS) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
rule Application TARGET : SOURCES : LIBRARIES
|
|
|
|
{
|
|
|
|
# build object files
|
|
|
|
local OBJECTS = [ Objects $(SOURCES) ] ;
|
|
|
|
|
|
|
|
# get binary path
|
|
|
|
local EXECUTABLE = $(BUILD)/$(TARGET).exe ;
|
|
|
|
|
|
|
|
# set libraries
|
|
|
|
LDFLAGS on $(EXECUTABLE) = $(LDFLAGS) $($(LIBRARIES)_path) ;
|
|
|
|
|
|
|
|
# build application
|
|
|
|
MakeFileDir $(EXECUTABLE) ;
|
|
|
|
LinkAction $(EXECUTABLE) : $(OBJECTS) ;
|
2009-10-10 20:48:55 +00:00
|
|
|
Depends $(EXECUTABLE) : $(OBJECTS) $($(LIBRARIES)_path) ;
|
2009-10-10 20:14:04 +00:00
|
|
|
|
|
|
|
# make alias
|
|
|
|
Alias $(TARGET) : $(EXECUTABLE) ;
|
|
|
|
|
|
|
|
# remember executable path for running
|
|
|
|
$(TARGET)_path = $(EXECUTABLE) ;
|
|
|
|
|
|
|
|
# remember executable objects for coverage
|
|
|
|
$(TARGET)_objects = $(OBJECTS) $($(LIBRARIES)_objects) ;
|
|
|
|
}
|
|
|
|
|
2009-10-10 21:36:03 +00:00
|
|
|
rule CleanCoverage TARGET
|
|
|
|
{
|
|
|
|
# make target
|
|
|
|
local CLEAN_TARGET = $(TARGET)_clean_coverage ;
|
|
|
|
|
|
|
|
NotFile $(CLEAN_TARGET) ;
|
|
|
|
Always $(CLEAN_TARGET) ;
|
|
|
|
Depends $(TARGET) : $(CLEAN_TARGET) ;
|
|
|
|
|
|
|
|
# clean object files
|
|
|
|
local FILES = $($(SOURCE)_objects:S=.gcda) ;
|
|
|
|
|
|
|
|
DeleteAction $(CLEAN_TARGET) : $(FILES) ;
|
|
|
|
}
|
|
|
|
|
2009-10-10 20:14:04 +00:00
|
|
|
rule Test TARGET : SOURCE
|
|
|
|
{
|
|
|
|
# make alias
|
|
|
|
Alias $(TARGET) : $(SOURCE) ;
|
|
|
|
|
|
|
|
# run tests
|
|
|
|
RunAction $(TARGET) : $($(SOURCE)_path) ;
|
|
|
|
|
|
|
|
# remember executable objects for coverage
|
|
|
|
$(TARGET)_objects = $($(SOURCE)_objects) ;
|
2009-10-10 21:36:03 +00:00
|
|
|
|
|
|
|
# clean coverage files before run
|
|
|
|
CleanCoverage $(TARGET) ;
|
2009-10-10 20:14:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
rule Coverage TARGET : SOURCE
|
|
|
|
{
|
|
|
|
local FILES = $($(SOURCE)_objects:S=.gcda) ;
|
|
|
|
|
|
|
|
# disable "independent target" warnings
|
|
|
|
NotFile $(FILES) ;
|
|
|
|
|
|
|
|
CoverageAction $(TARGET) : $(FILES) ;
|
|
|
|
Depends $(TARGET) : $(SOURCE) ;
|
|
|
|
}
|