From: <jt...@us...> - 2007-05-06 15:56:34
|
Revision: 262 http://ro-oslib.svn.sourceforge.net/ro-oslib/?rev=262&view=rev Author: jtytgat Date: 2007-05-06 08:56:23 -0700 (Sun, 06 May 2007) Log Message: ----------- Adding 'test' target. Making CROSSGCC_ELF as default BUILDTYPE. Modified Paths: -------------- branches/simplified-build/!OsLib/Source/Makefile Modified: branches/simplified-build/!OsLib/Source/Makefile =================================================================== --- branches/simplified-build/!OsLib/Source/Makefile 2007-05-06 15:55:08 UTC (rev 261) +++ branches/simplified-build/!OsLib/Source/Makefile 2007-05-06 15:56:23 UTC (rev 262) @@ -1,7 +1,7 @@ # ... -# Build type: CROSSGCC_AOF (default), CROSSGCC_ELF [NORCROFT_AOF: not supported yet] -BUILDTYPE ?= CROSSGCC_AOF +# Build type: CROSSGCC_AOF, CROSSGCC_ELF (default), [NORCROFT_AOF: not supported yet] +export BUILDTYPE ?= CROSSGCC_ELF ifeq ($(BUILDTYPE),CROSSGCC_ELF) else ifeq ($(BUILDTYPE),CROSSGCC_AOF) @@ -13,6 +13,9 @@ .PHONY: all install release-oslib release-cstrong clean oslib cstrong BuildRequirements all: oslib cstrong +test: oslib + $(MAKE) -C Test + # Only for GCCSDK cross-compilation install purposes: install: oslib cd $(BUILDDIR) && $(INSTALL) OSLib32.o $(GCCSDK_INSTALL_ENV)/lib/libOSLib32.o @@ -43,6 +46,7 @@ $(MAKE) -C Toolbox/oslib $@ $(MAKE) -C User/oslib $@ -$(RM) $(BUILDDIR) + $(MAKE) -C Test $@ oslib: $(OSLIBLIB) $(OSLIBLIB): BuildRequirements This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |