summaryrefslogtreecommitdiffstats
path: root/src/target/firmware/Makefile
diff options
context:
space:
mode:
authorIngo Albrecht <prom@berlin.ccc.de>2010-03-07 18:03:09 +0100
committerHarald Welte <laforge@gnumonks.org>2010-04-08 10:35:24 +0200
commitd35783a74c1e86ca471efc357e2a6dad8e29af17 (patch)
treeaf586522e04e52cf667f78de2025337ff248a4eb /src/target/firmware/Makefile
parentb9f5195b5463fd8ca7d77e72ec8018c411126a6a (diff)
firmware: Support for building for multiple target environments.
Diffstat (limited to 'src/target/firmware/Makefile')
-rw-r--r--src/target/firmware/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/target/firmware/Makefile b/src/target/firmware/Makefile
index b6e20ecf..70ea49ac 100644
--- a/src/target/firmware/Makefile
+++ b/src/target/firmware/Makefile
@@ -10,12 +10,18 @@ RF_OBJS=rf/trf6151.o
# Board- and environment-specific startup code and linker script
START=board/common/compal_ramload_start.S
-LDS=board/common/compal_ramload.lds
+# List of all supported boards
BOARDS=compal_e88 compal_e99
compal_e88_OBJS=board/common/rffe_compal_dualband.o board/compal_e88/init.o
compal_e99_OBJS=board/common/rffe_compal_dualband.o board/compal_e99/init.o
+# List of all supported execution environments
+ENVIRONMENTS=ramload osmoload
+ramload_LDS=board/common/compal_ramload.lds
+osmoload_LDS=board/common/compal_osmoload.lds
+
+# List of all applications (add yours here!)
APPLICATIONS=hello_world l1test compal_dump compal_dsp_dump layer1 loader
# Things that go in all applications