summaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-05-30 02:43:47 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-05-30 02:43:47 +0000
commita6cf1864b68d5cb173fffc70453f05ac3f76c2f8 (patch)
treeffa7f327e748060a89bf0bb237da9a161de528d5 /example
parentc8264ef242aead8bfe21e660384979496485bcaa (diff)
downloadbuildsystem-a6cf1864b68d5cb173fffc70453f05ac3f76c2f8.tar.gz
buildsystem-a6cf1864b68d5cb173fffc70453f05ac3f76c2f8.tar.bz2
Bring up to date
svn path=/trunk/tools/buildsystem/; revision=7653
Diffstat (limited to 'example')
-rw-r--r--example/Makefile12
1 files changed, 4 insertions, 8 deletions
diff --git a/example/Makefile b/example/Makefile
index ed757c7..492c255 100644
--- a/example/Makefile
+++ b/example/Makefile
@@ -2,15 +2,11 @@
COMPONENT := foo
# And the component type
COMPONENT_TYPE := lib-static
-# Set the executable extension
-EXEEXT :=
-# And the library extension
-LIBEXT := .a
-# Define our target platform
-TARGET := linux
+# Component version
+COMPONENT_VERSION := 0.0.1
-# We're using a modern GCC, so can compile and generate dependencies together
-CC_CAN_BUILD_AND_DEP := yes
+# Tooling
+include build/makefiles/Makefile.tools
# Grab the core makefile
include build/makefiles/Makefile.top