make: don't use export on example makefiles

This commit is contained in:
René Kijewski 2014-05-05 21:54:10 +02:00
parent 747138cf99
commit ac9c80f417
35 changed files with 68 additions and 68 deletions

View File

@ -1,16 +1,16 @@
# name of your application # name of your application
export APPLICATION = ccn-lite-client APPLICATION = ccn-lite-client
# If no BOARD is found in the environment, use this default: # If no BOARD is found in the environment, use this default:
export BOARD ?= native BOARD ?= native
# This has to be the absolute path to the RIOT base directory: # This has to be the absolute path to the RIOT base directory:
export RIOTBASE ?= $(CURDIR)/../.. RIOTBASE ?= $(CURDIR)/../..
# Uncomment these lines if you want to use platform support from external # Uncomment these lines if you want to use platform support from external
# repositories: # repositories:
#export RIOTCPU ?= $(CURDIR)/../../RIOT/thirdparty_cpu #RIOTCPU ?= $(CURDIR)/../../RIOT/thirdparty_cpu
#export RIOTBOARD ?= $(CURDIR)/../../RIOT/thirdparty_boards #RIOTBOARD ?= $(CURDIR)/../../RIOT/thirdparty_boards
# Uncomment this to enable scheduler statistics for ps: # Uncomment this to enable scheduler statistics for ps:
#CFLAGS += -DSCHEDSTATISTICS #CFLAGS += -DSCHEDSTATISTICS
@ -25,7 +25,7 @@ export RIOTBASE ?= $(CURDIR)/../..
#CFLAGS += -DDEVELHELP #CFLAGS += -DDEVELHELP
# Change this to 0 show compiler invocation lines by default: # Change this to 0 show compiler invocation lines by default:
export QUIET ?= 1 QUIET ?= 1
BOARD_INSUFFICIENT_RAM := chronos msb-430h telosb wsn430-v1_3b wsn430-v1_4 BOARD_INSUFFICIENT_RAM := chronos msb-430h telosb wsn430-v1_3b wsn430-v1_4
BOARD_BLACKLIST := arduino-due mbed_lpc1768 msb-430 pttu redbee-econotag udoo z1 qemu-i386 BOARD_BLACKLIST := arduino-due mbed_lpc1768 msb-430 pttu redbee-econotag udoo z1 qemu-i386

View File

@ -1,16 +1,16 @@
# name of your application # name of your application
export APPLICATION = ccn-lite-relay APPLICATION = ccn-lite-relay
# If no BOARD is found in the environment, use this default: # If no BOARD is found in the environment, use this default:
export BOARD ?= native BOARD ?= native
# This has to be the absolute path to the RIOT base directory: # This has to be the absolute path to the RIOT base directory:
export RIOTBASE ?= $(CURDIR)/../.. RIOTBASE ?= $(CURDIR)/../..
# Uncomment these lines if you want to use platform support from external # Uncomment these lines if you want to use platform support from external
# repositories: # repositories:
#export RIOTCPU ?= $(CURDIR)/../../RIOT/thirdparty_cpu #RIOTCPU ?= $(CURDIR)/../../RIOT/thirdparty_cpu
#export RIOTBOARD ?= $(CURDIR)/../../RIOT/thirdparty_boards #RIOTBOARD ?= $(CURDIR)/../../RIOT/thirdparty_boards
# Uncomment this to enable scheduler statistics for ps: # Uncomment this to enable scheduler statistics for ps:
#CFLAGS += -DSCHEDSTATISTICS #CFLAGS += -DSCHEDSTATISTICS
@ -25,7 +25,7 @@ export RIOTBASE ?= $(CURDIR)/../..
#CFLAGS += -DDEVELHELP #CFLAGS += -DDEVELHELP
# Change this to 0 show compiler invocation lines by default: # Change this to 0 show compiler invocation lines by default:
export QUIET ?= 1 QUIET ?= 1
BOARD_INSUFFICIENT_RAM := chronos msb-430h telosb wsn430-v1_3b wsn430-v1_4 BOARD_INSUFFICIENT_RAM := chronos msb-430h telosb wsn430-v1_3b wsn430-v1_4
BOARD_BLACKLIST := arduino-due mbed_lpc1768 msb-430 pttu redbee-econotag udoo z1 qemu-i386 BOARD_BLACKLIST := arduino-due mbed_lpc1768 msb-430 pttu redbee-econotag udoo z1 qemu-i386

View File

@ -1,16 +1,16 @@
# name of your application # name of your application
export APPLICATION = default APPLICATION = default
# If no BOARD is found in the environment, use this default: # If no BOARD is found in the environment, use this default:
export BOARD ?= native BOARD ?= native
# This has to be the absolute path to the RIOT base directory: # This has to be the absolute path to the RIOT base directory:
export RIOTBASE ?= $(CURDIR)/../.. RIOTBASE ?= $(CURDIR)/../..
# Uncomment these lines if you want to use platform support from external # Uncomment these lines if you want to use platform support from external
# repositories: # repositories:
#export RIOTCPU ?= $(CURDIR)/../../RIOT/thirdparty_cpu #RIOTCPU ?= $(CURDIR)/../../RIOT/thirdparty_cpu
#export RIOTBOARD ?= $(CURDIR)/../../RIOT/thirdparty_boards #RIOTBOARD ?= $(CURDIR)/../../RIOT/thirdparty_boards
# Uncomment this to enable scheduler statistics for ps: # Uncomment this to enable scheduler statistics for ps:
#CFLAGS += -DSCHEDSTATISTICS #CFLAGS += -DSCHEDSTATISTICS
@ -25,7 +25,7 @@ export RIOTBASE ?= $(CURDIR)/../..
#CFLAGS += -DDEVELHELP #CFLAGS += -DDEVELHELP
# Change this to 0 show compiler invocation lines by default: # Change this to 0 show compiler invocation lines by default:
export QUIET ?= 1 QUIET ?= 1
# Modules to include: # Modules to include:

View File

@ -1,13 +1,13 @@
# name of your application # name of your application
export APPLICATION = hello-world APPLICATION = hello-world
# If no BOARD is found in the environment, use this default: # If no BOARD is found in the environment, use this default:
export BOARD ?= native BOARD ?= native
# This has to be the absolute path to the RIOT base directory: # This has to be the absolute path to the RIOT base directory:
export RIOTBASE ?= $(CURDIR)/../.. RIOTBASE ?= $(CURDIR)/../..
# Change this to 0 show compiler invocation lines by default: # Change this to 0 show compiler invocation lines by default:
export QUIET ?= 1 QUIET ?= 1
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include

View File

@ -1,13 +1,13 @@
# name of your application # name of your application
export APPLICATION = ipc_pingpong APPLICATION = ipc_pingpong
# If no BOARD is found in the environment, use this default: # If no BOARD is found in the environment, use this default:
export BOARD ?= native BOARD ?= native
# This has to be the absolute path to the RIOT base directory: # This has to be the absolute path to the RIOT base directory:
export RIOTBASE ?= $(CURDIR)/../.. RIOTBASE ?= $(CURDIR)/../..
# Change this to 0 show compiler invocation lines by default: # Change this to 0 show compiler invocation lines by default:
export QUIET ?= 1 QUIET ?= 1
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include

View File

@ -1,16 +1,16 @@
# name of your application # name of your application
export APPLICATION = riot_and_cpp APPLICATION = riot_and_cpp
# If no BOARD is found in the environment, use this default: # If no BOARD is found in the environment, use this default:
export BOARD ?= native BOARD ?= native
# This has to be the absolute path to the RIOT base directory: # This has to be the absolute path to the RIOT base directory:
export RIOTBASE ?= $(CURDIR)/../.. RIOTBASE ?= $(CURDIR)/../..
# Uncomment these lines if you want to use platform support from external # Uncomment these lines if you want to use platform support from external
# repositories: # repositories:
#export RIOTCPU ?= $(CURDIR)/../../../thirdparty_cpu #RIOTCPU ?= $(CURDIR)/../../../thirdparty_cpu
#export RIOTBOARD ?= $(CURDIR)/../../../thirdparty_boards #RIOTBOARD ?= $(CURDIR)/../../../thirdparty_boards
# Uncomment this to enable scheduler statistics for ps: # Uncomment this to enable scheduler statistics for ps:
#CFLAGS += -DSCHEDSTATISTICS #CFLAGS += -DSCHEDSTATISTICS
@ -25,7 +25,7 @@ export RIOTBASE ?= $(CURDIR)/../..
#CFLAGS += -DDEVELHELP #CFLAGS += -DDEVELHELP
# Change this to 0 show compiler invocation lines by default: # Change this to 0 show compiler invocation lines by default:
export QUIET ?= 1 QUIET ?= 1
# Blacklist boards # Blacklist boards
BOARD_BLACKLIST := arduino-due avsextrem chronos mbed_lpc1768 msb-430h msba2 redbee-econotag telosb wsn430-v1_3b wsn430-v1_4 msb-430 pttu udoo qemu-i386 z1 BOARD_BLACKLIST := arduino-due avsextrem chronos mbed_lpc1768 msb-430h msba2 redbee-econotag telosb wsn430-v1_3b wsn430-v1_4 msb-430 pttu udoo qemu-i386 z1

View File

@ -1,16 +1,16 @@
# name of your application # name of your application
export APPLICATION = rpl_udp APPLICATION = rpl_udp
# If no BOARD is found in the environment, use this default: # If no BOARD is found in the environment, use this default:
export BOARD ?= native BOARD ?= native
# This has to be the absolute path to the RIOT base directory: # This has to be the absolute path to the RIOT base directory:
export RIOTBASE ?= $(CURDIR)/../.. RIOTBASE ?= $(CURDIR)/../..
# Uncomment these lines if you want to use platform support from external # Uncomment these lines if you want to use platform support from external
# repositories: # repositories:
#export RIOTCPU ?= $(CURDIR)/../../RIOT/thirdparty_cpu #RIOTCPU ?= $(CURDIR)/../../RIOT/thirdparty_cpu
#export RIOTBOARD ?= $(CURDIR)/../../RIOT/thirdparty_boards #RIOTBOARD ?= $(CURDIR)/../../RIOT/thirdparty_boards
# Uncomment this to enable scheduler statistics for ps: # Uncomment this to enable scheduler statistics for ps:
#CFLAGS += -DSCHEDSTATISTICS #CFLAGS += -DSCHEDSTATISTICS
@ -25,7 +25,7 @@ export RIOTBASE ?= $(CURDIR)/../..
#CFLAGS += -DDEVELHELP #CFLAGS += -DDEVELHELP
# Change this to 0 show compiler invocation lines by default: # Change this to 0 show compiler invocation lines by default:
export QUIET ?= 1 QUIET ?= 1
# get rid of the mandatory RPL warning # get rid of the mandatory RPL warning
ifeq ($(shell $(CC) -Wno-cpp -E - 2>/dev/null >/dev/null dev/null ; echo $$?),0) ifeq ($(shell $(CC) -Wno-cpp -E - 2>/dev/null >/dev/null dev/null ; echo $$?),0)

View File

@ -1,3 +1,3 @@
export BOARD ?= native BOARD ?= native
export RIOTBASE ?= $(CURDIR)/../.. RIOTBASE ?= $(CURDIR)/../..
export QUIET ?= 1 QUIET ?= 1

View File

@ -1,4 +1,4 @@
export APPLICATION = test_bloom APPLICATION = test_bloom
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_RAM := chronos mbed_lpc1768 msb-430 msb-430h redbee-econotag \ BOARD_INSUFFICIENT_RAM := chronos mbed_lpc1768 msb-430 msb-430h redbee-econotag \

View File

@ -1,4 +1,4 @@
export APPLICATION = test_bloom_bytes APPLICATION = test_bloom_bytes
include ../Makefile.tests_common include ../Makefile.tests_common
USEMODULE += hashes USEMODULE += hashes

View File

@ -1,4 +1,4 @@
export APPLICATION = test_disable_module APPLICATION = test_disable_module
include ../Makefile.tests_common include ../Makefile.tests_common
DISABLE_MODULE += auto_init DISABLE_MODULE += auto_init

View File

@ -1,4 +1,4 @@
export APPLICATION = test_float APPLICATION = test_float
include ../Makefile.tests_common include ../Makefile.tests_common
DISABLE_MODULE += auto_init DISABLE_MODULE += auto_init

View File

@ -1,4 +1,4 @@
export APPLICATION = test_hwtimer APPLICATION = test_hwtimer
include ../Makefile.tests_common include ../Makefile.tests_common
DISABLE_MODULE += auto_init DISABLE_MODULE += auto_init

View File

@ -1,4 +1,4 @@
export APPLICATION = test_hwtimer_spin APPLICATION = test_hwtimer_spin
include ../Makefile.tests_common include ../Makefile.tests_common
DISABLE_MODULE += auto_init DISABLE_MODULE += auto_init

View File

@ -1,4 +1,4 @@
export APPLICATION = test_hwtimer_wait APPLICATION = test_hwtimer_wait
include ../Makefile.tests_common include ../Makefile.tests_common
DISABLE_MODULE += auto_init DISABLE_MODULE += auto_init

View File

@ -1,4 +1,4 @@
export APPLICATION = test_mutex_unlock_and_sleep APPLICATION = test_mutex_unlock_and_sleep
include ../Makefile.tests_common include ../Makefile.tests_common
DISABLE_MODULE += auto_init DISABLE_MODULE += auto_init

View File

@ -1,4 +1,4 @@
export APPLICATION = test_net_if APPLICATION = test_net_if
BOARD_BLACKLIST = mbed_lpc1768 arduino-due udoo qemu-i386 BOARD_BLACKLIST = mbed_lpc1768 arduino-due udoo qemu-i386
# qemu-i386: no tranceiver, yet # qemu-i386: no tranceiver, yet

View File

@ -1,4 +1,4 @@
export APPLICATION = test_pnet APPLICATION = test_pnet
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_RAM := chronos msb-430h redbee-econotag telosb wsn430-v1_3b wsn430-v1_4 z1 BOARD_INSUFFICIENT_RAM := chronos msb-430h redbee-econotag telosb wsn430-v1_3b wsn430-v1_4 z1

View File

@ -1,4 +1,4 @@
export APPLICATION = test_posix_semaphore APPLICATION = test_posix_semaphore
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_RAM := msb-430 msb-430h mbed_lpc1768 redbee-econotag chronos BOARD_INSUFFICIENT_RAM := msb-430 msb-430h mbed_lpc1768 redbee-econotag chronos

View File

@ -1,4 +1,4 @@
export APPLICATION = test_posix_sleep APPLICATION = test_posix_sleep
include ../Makefile.tests_common include ../Makefile.tests_common
USEMODULE += posix USEMODULE += posix

View File

@ -1,4 +1,4 @@
export APPLICATION = test_pthread APPLICATION = test_pthread
include ../Makefile.tests_common include ../Makefile.tests_common
USEMODULE += posix USEMODULE += posix

View File

@ -1,4 +1,4 @@
export APPLICATION = test_condition_variable APPLICATION = test_condition_variable
include ../Makefile.tests_common include ../Makefile.tests_common
USEMODULE += posix USEMODULE += posix

View File

@ -1,4 +1,4 @@
export APPLICATION = test_pthread_cooperation APPLICATION = test_pthread_cooperation
include ../Makefile.tests_common include ../Makefile.tests_common
USEMODULE += posix USEMODULE += posix

View File

@ -1,4 +1,4 @@
export APPLICATION = test_sha256 APPLICATION = test_sha256
include ../Makefile.tests_common include ../Makefile.tests_common
USEMODULE += crypto USEMODULE += crypto

View File

@ -1,4 +1,4 @@
export APPLICATION = test_shell APPLICATION = test_shell
include ../Makefile.tests_common include ../Makefile.tests_common
USEMODULE += shell USEMODULE += shell

View File

@ -1,4 +1,4 @@
export APPLICATION = test_thread_basic APPLICATION = test_thread_basic
include ../Makefile.tests_common include ../Makefile.tests_common
DISABLE_MODULE += auto_init DISABLE_MODULE += auto_init

View File

@ -1,4 +1,4 @@
export APPLICATION = test_thread_cooperation APPLICATION = test_thread_cooperation
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_RAM := chronos msb-430 msb-430h mbed_lpc1768 redbee-econotag BOARD_INSUFFICIENT_RAM := chronos msb-430 msb-430h mbed_lpc1768 redbee-econotag

View File

@ -1,4 +1,4 @@
export APPLICATION = test_thread_exit APPLICATION = test_thread_exit
include ../Makefile.tests_common include ../Makefile.tests_common
DISABLE_MODULE += auto_init DISABLE_MODULE += auto_init

View File

@ -1,4 +1,4 @@
export APPLICATION = test_thread_msg APPLICATION = test_thread_msg
include ../Makefile.tests_common include ../Makefile.tests_common
DISABLE_MODULE += auto_init DISABLE_MODULE += auto_init

View File

@ -1,4 +1,4 @@
export APPLICATION = test_thread_msg_block_w_queue APPLICATION = test_thread_msg_block_w_queue
include ../Makefile.tests_common include ../Makefile.tests_common
DISABLE_MODULE += auto_init DISABLE_MODULE += auto_init

View File

@ -1,4 +1,4 @@
export APPLICATION = test_thread_msg_block_wo_queue APPLICATION = test_thread_msg_block_wo_queue
include ../Makefile.tests_common include ../Makefile.tests_common
DISABLE_MODULE += auto_init DISABLE_MODULE += auto_init

View File

@ -1,4 +1,4 @@
export APPLICATION = test_thread_msg_seq APPLICATION = test_thread_msg_seq
include ../Makefile.tests_common include ../Makefile.tests_common
DISABLE_MODULE += auto_init DISABLE_MODULE += auto_init

View File

@ -1,4 +1,4 @@
export APPLICATION = test_vtimer_msg APPLICATION = test_vtimer_msg
include ../Makefile.tests_common include ../Makefile.tests_common
USEMODULE += vtimer USEMODULE += vtimer

View File

@ -1,4 +1,4 @@
export APPLICATION = test_vtimer_msg_diff APPLICATION = test_vtimer_msg_diff
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_RAM := mbed_lpc1768 BOARD_INSUFFICIENT_RAM := mbed_lpc1768

View File

@ -1,4 +1,4 @@
export APPLICATION = unittests APPLICATION = unittests
include ../Makefile.tests_common include ../Makefile.tests_common
USEMODULE += embunit USEMODULE += embunit