Skip to content
Snippets Groups Projects
Commit 1e983c96 authored by Thomas Eichinger's avatar Thomas Eichinger
Browse files

s/PROJECT/APPLICATION/g

fixes #548
parent 4e4f9083
No related branches found
No related tags found
No related merge requests found
Showing
with 47 additions and 47 deletions
...@@ -84,7 +84,7 @@ objsize: ...@@ -84,7 +84,7 @@ objsize:
sort -rnk$${SORTROW} sort -rnk$${SORTROW}
buildsize: buildsize:
@$(SIZE) -dB $(BINDIR)$(PROJECT).elf @$(SIZE) -dB $(BINDIR)$(APPLICATION).elf
buildsizes: SHELL=bash buildsizes: SHELL=bash
buildsizes: buildsizes:
......
...@@ -62,24 +62,24 @@ include $(RIOTBASE)/Makefile.cflags ...@@ -62,24 +62,24 @@ include $(RIOTBASE)/Makefile.cflags
# the binaries to link # the binaries to link
BASELIBS += $(BINDIR)$(BOARD)_base.a BASELIBS += $(BINDIR)$(BOARD)_base.a
BASELIBS += $(BINDIR)${PROJECT}.a BASELIBS += $(BINDIR)${APPLICATION}.a
BASELIBS += $(USEPKG:%=${BINDIR}%.a) BASELIBS += $(USEPKG:%=${BINDIR}%.a)
.PHONY: all clean flash doc term objsize buildsize buildsizes buildsizes-diff .PHONY: all clean flash doc term objsize buildsize buildsizes buildsizes-diff
export ELFFILE ?= $(BINDIR)$(PROJECT).elf export ELFFILE ?= $(BINDIR)$(APPLICATION).elf
export HEXFILE ?= $(ELFFILE:.elf=.hex) export HEXFILE ?= $(ELFFILE:.elf=.hex)
## make script for the application ## make script for your application. Build RIOT-base here!
all: $(BINDIR)$(PROJECT).a all: $(BINDIR)$(APPLICATION).a
@echo "Building application $(PROJECT) for $(BOARD) w/ MCU $(MCU)." @echo "Building application $(APPLICATION) for $(BOARD) w/ MCU $(MCU)."
"$(MAKE)" -C $(RIOTBOARD)/$(BOARD) "$(MAKE)" -C $(RIOTBOARD)/$(BOARD)
"$(MAKE)" -C $(RIOTBASE) "$(MAKE)" -C $(RIOTBASE)
ifeq (,$(RIOTNOLINK)) ifeq (,$(RIOTNOLINK))
ifeq ($(BUILDOSXNATIVE),1) ifeq ($(BUILDOSXNATIVE),1)
$(AD)$(LINK) $(UNDEF) -o $(ELFFILE) $(BASELIBS) $(LINKFLAGS) -Wl,-no_pie $(AD)$(LINK) $(UNDEF) -o $(ELFFILE) $(BASELIBS) $(LINKFLAGS) -Wl,-no_pie
else else
$(AD)$(LINK) $(UNDEF) -o $(ELFFILE) -Wl,--start-group $(BASELIBS) -lm -Wl,--end-group -Wl,-Map=$(BINDIR)$(PROJECT).map $(LINKFLAGS) $(AD)$(LINK) $(UNDEF) -o $(ELFFILE) -Wl,--start-group $(BASELIBS) -lm -Wl,--end-group -Wl,-Map=$(BINDIR)$(APPLICATION).map $(LINKFLAGS)
endif endif
$(AD)$(SIZE) $(ELFFILE) $(AD)$(SIZE) $(ELFFILE)
$(AD)$(OBJCOPY) $(OFLAGS) $(ELFFILE) $(HEXFILE) $(AD)$(OBJCOPY) $(OFLAGS) $(ELFFILE) $(HEXFILE)
...@@ -89,10 +89,10 @@ endif ...@@ -89,10 +89,10 @@ endif
SRC = $(wildcard *.c) SRC = $(wildcard *.c)
# string array of all names replaced .c with .o # string array of all names replaced .c with .o
OBJ = $(SRC:%.c=${BINDIR}${PROJECT}/%.o) OBJ = $(SRC:%.c=${BINDIR}${APPLICATION}/%.o)
$(BINDIR)$(PROJECT).a: $(OBJ) $(BINDIR)$(APPLICATION).a: $(OBJ)
$(AD)$(AR) -rc $(BINDIR)$(PROJECT).a $(OBJ) $(AD)$(AR) -rc $(BINDIR)$(APPLICATION).a $(OBJ)
# add extra include paths for packages in $(USEMODULE) # add extra include paths for packages in $(USEMODULE)
export USEMODULE_INCLUDES = export USEMODULE_INCLUDES =
...@@ -120,7 +120,7 @@ $(RIOTBASE)/pkg/%/Makefile.include:: ...@@ -120,7 +120,7 @@ $(RIOTBASE)/pkg/%/Makefile.include::
# pull in dependency info for *existing* .o files # pull in dependency info for *existing* .o files
-include $(OBJ:.o=.d) -include $(OBJ:.o=.d)
$(BINDIR)$(PROJECT)/%.o: %.c $(PROJDEPS) $(USEPKG:%=${BINDIR}%.a) $(BINDIR)$(APPLICATION)/%.o: %.c $(PROJDEPS) $(USEPKG:%=${BINDIR}%.a)
@echo; echo "Compiling.... $*.c"; echo @echo; echo "Compiling.... $*.c"; echo
$(AD)mkdir -p "$(dir $@)" $(AD)mkdir -p "$(dir $@)"
$(AD)$(CC) $(CFLAGS) $(INCLUDES) -c "$<" -o "$@" $(AD)$(CC) $(CFLAGS) $(INCLUDES) -c "$<" -o "$@"
......
...@@ -36,7 +36,7 @@ export LINKFLAGS += -g3 -ggdb -std=gnu99 $(CPU_USAGE) $(FPU_USAGE) -mlittle-endi ...@@ -36,7 +36,7 @@ export LINKFLAGS += -g3 -ggdb -std=gnu99 $(CPU_USAGE) $(FPU_USAGE) -mlittle-endi
# linkerscript specified in cpu/Makefile.include # linkerscript specified in cpu/Makefile.include
export LINKFLAGS += -T$(LINKERSCRIPT) export LINKFLAGS += -T$(LINKERSCRIPT)
export OFLAGS += -O binary export OFLAGS += -O binary
export FFLAGS += -e -w -v -b bin/$(BOARD)/$(PROJECT).hex export FFLAGS += -e -w -v -b bin/$(BOARD)/$(APPLICATION).hex
# additional compiler and linker flags to enable newlib-nano and optimize for it # additional compiler and linker flags to enable newlib-nano and optimize for it
# CAREFUL: newlib-nano is not supported by the ubuntu arm-none-eabi- toolchain, so its disabled by default # CAREFUL: newlib-nano is not supported by the ubuntu arm-none-eabi- toolchain, so its disabled by default
......
...@@ -16,7 +16,7 @@ export SIZE = $(PREFIX)size ...@@ -16,7 +16,7 @@ export SIZE = $(PREFIX)size
export OBJCOPY = $(PREFIX)objcopy export OBJCOPY = $(PREFIX)objcopy
export LINKFLAGS = -mmcu=$(MCU) -lgcc $(BINDIR)msp430_common/startup.o export LINKFLAGS = -mmcu=$(MCU) -lgcc $(BINDIR)msp430_common/startup.o
export FLASHER = mspdebug export FLASHER = mspdebug
export HEXFILE = $(BINDIR)$(PROJECT).hex export HEXFILE = $(BINDIR)$(APPLICATION).hex
export USEMODULE += msp430_common export USEMODULE += msp430_common
export FFLAGS = rf2500 "prog $(HEXFILE)" export FFLAGS = rf2500 "prog $(HEXFILE)"
export OFLAGS = -O ihex export OFLAGS = -O ihex
......
...@@ -17,10 +17,10 @@ LINKFLAGS = -mcpu=cortex-m3 -mthumb -Wl,--gc-sections,--cref -lc -lgcc -lnosys - ...@@ -17,10 +17,10 @@ LINKFLAGS = -mcpu=cortex-m3 -mthumb -Wl,--gc-sections,--cref -lc -lgcc -lnosys -
ifeq ($(strip $(PORT)),) ifeq ($(strip $(PORT)),)
export PORT = /dev/ttyUSB0 export PORT = /dev/ttyUSB0
endif endif
export HEXFILE = $(BINDIR)$(PROJECT).hex export HEXFILE = $(BINDIR)$(APPLICATION).hex
export FFLAGS = $(HEXFILE) export FFLAGS = $(HEXFILE)
export ELFFILE = bin/$(PROJECT).elf export ELFFILE = bin/$(APPLICATION).elf
export DEBUGGER_FLAGS = $(ELFFILE) export DEBUGGER_FLAGS = $(ELFFILE)
export INCLUDES += -I$(RIOTBOARD)/$(BOARD)/include/ -I$(RIOTCPU)/$(CPU)/include export INCLUDES += -I$(RIOTBOARD)/$(BOARD)/include/ -I$(RIOTCPU)/$(CPU)/include
......
...@@ -14,7 +14,7 @@ export SIZE = $(PREFIX)size ...@@ -14,7 +14,7 @@ export SIZE = $(PREFIX)size
export OBJCOPY = $(PREFIX)objcopy export OBJCOPY = $(PREFIX)objcopy
export LINKFLAGS = -mmcu=$(MCU) -lgcc export LINKFLAGS = -mmcu=$(MCU) -lgcc
TERMPROG = $(RIOTBASE)/dist/tools/pyterm/pyterm.py TERMPROG = $(RIOTBASE)/dist/tools/pyterm/pyterm.py
export HEXFILE = $(BINDIR)$(PROJECT).hex export HEXFILE = $(BINDIR)$(APPLICATION).hex
export FLASHER ?= mspdebug export FLASHER ?= mspdebug
export PORT ?= /dev/ttyUSB0 export PORT ?= /dev/ttyUSB0
......
...@@ -19,7 +19,7 @@ LINKFLAGS = -gdwarf-2 -mcpu=arm7tdmi-s -static -lgcc -nostartfiles -T$(RIOTBASE) ...@@ -19,7 +19,7 @@ LINKFLAGS = -gdwarf-2 -mcpu=arm7tdmi-s -static -lgcc -nostartfiles -T$(RIOTBASE)
ifeq ($(strip $(PORT)),) ifeq ($(strip $(PORT)),)
export PORT = /dev/ttyUSB0 export PORT = /dev/ttyUSB0
endif endif
export HEXFILE = $(BINDIR)$(PROJECT).hex export HEXFILE = $(BINDIR)$(APPLICATION).hex
export FFLAGS = $(PORT) $(HEXFILE) export FFLAGS = $(PORT) $(HEXFILE)
include $(RIOTBOARD)/msba2-common/Makefile.dep include $(RIOTBOARD)/msba2-common/Makefile.dep
......
...@@ -5,7 +5,7 @@ export NATIVEINCLUDES += -I$(RIOTBASE)/core/include/ ...@@ -5,7 +5,7 @@ export NATIVEINCLUDES += -I$(RIOTBASE)/core/include/
export NATIVEINCLUDES += -I$(RIOTBASE)/drivers/include/ export NATIVEINCLUDES += -I$(RIOTBASE)/drivers/include/
export CPU = native export CPU = native
export ELF = $(BINDIR)$(PROJECT).elf export ELF = $(BINDIR)$(APPLICATION).elf
# toolchain: # toolchain:
export PREFIX = export PREFIX =
......
...@@ -3,5 +3,5 @@ include $(RIOTBOARD)/x86-multiboot-common/Makefile.include ...@@ -3,5 +3,5 @@ include $(RIOTBOARD)/x86-multiboot-common/Makefile.include
CFLAGS += -march=i686 -mtune=i686 CFLAGS += -march=i686 -mtune=i686
CFLAGS += -I$(RIOTBOARD)/qemu-i386/include CFLAGS += -I$(RIOTBOARD)/qemu-i386/include
TERMPROG = qemu-system-i386 -m 512m -serial stdio -nographic -monitor /dev/null -kernel $(BINDIR)/$(PROJECT).hex TERMPROG = qemu-system-i386 -m 512m -serial stdio -nographic -monitor /dev/null -kernel $(BINDIR)/$(APPLICATION).hex
FLASHER = true FLASHER = true
...@@ -24,7 +24,7 @@ LINKFLAGS = -mcpu=arm7tdmi-s -static -lgcc -nostartfiles -T$(RIOTBASE)/cpu/$(CPU ...@@ -24,7 +24,7 @@ LINKFLAGS = -mcpu=arm7tdmi-s -static -lgcc -nostartfiles -T$(RIOTBASE)/cpu/$(CPU
ifeq ($(strip $(PORT)),) ifeq ($(strip $(PORT)),)
export PORT = /dev/ttyUSB0 export PORT = /dev/ttyUSB0
endif endif
export HEXFILE = $(BINDIR)/$(PROJECT).hex export HEXFILE = $(BINDIR)/$(APPLICATION).hex
export FFLAGS = -t $(PORT) -f $(HEXFILE) -c 'bbmc -l redbee-econotag reset' export FFLAGS = -t $(PORT) -f $(HEXFILE) -c 'bbmc -l redbee-econotag reset'
export OFLAGS = -O binary --gap-fill=0xff export OFLAGS = -O binary --gap-fill=0xff
......
...@@ -19,7 +19,7 @@ export FLASHER = goodfet.bsl ...@@ -19,7 +19,7 @@ export FLASHER = goodfet.bsl
ifeq ($(strip $(PORT)),) ifeq ($(strip $(PORT)),)
export PORT = /dev/ttyUSB0 export PORT = /dev/ttyUSB0
endif endif
export HEXFILE = $(BINDIR)$(PROJECT).hex export HEXFILE = $(BINDIR)$(APPLICATION).hex
export FFLAGS = --telosb -c $(PORT) -r -e -I -p $(HEXFILE) export FFLAGS = --telosb -c $(PORT) -r -e -I -p $(HEXFILE)
export INCLUDES += -I$(RIOTCPU)/msp430-common/include -I$(RIOTBOARD)/$(BOARD)/include -I$(RIOTBASE)/drivers/cc2420/include -I$(RIOTBASE)/sys/net/include export INCLUDES += -I$(RIOTCPU)/msp430-common/include -I$(RIOTBOARD)/$(BOARD)/include -I$(RIOTBASE)/drivers/cc2420/include -I$(RIOTBASE)/sys/net/include
......
...@@ -36,7 +36,7 @@ export LINKFLAGS += -g3 -ggdb -std=gnu99 $(CPU_USAGE) $(FPU_USAGE) -mlittle-endi ...@@ -36,7 +36,7 @@ export LINKFLAGS += -g3 -ggdb -std=gnu99 $(CPU_USAGE) $(FPU_USAGE) -mlittle-endi
# linkerscript specified in cpu/Makefile.include # linkerscript specified in cpu/Makefile.include
export LINKFLAGS += -T$(LINKERSCRIPT) export LINKFLAGS += -T$(LINKERSCRIPT)
export OFLAGS += -O binary export OFLAGS += -O binary
export FFLAGS += -e -w -v -b bin/$(BOARD)/$(PROJECT).hex export FFLAGS += -e -w -v -b bin/$(BOARD)/$(APPLICATION).hex
# additional linker and compiler flags to enable and optimize for newlib-nano # additional linker and compiler flags to enable and optimize for newlib-nano
# ATTENTION: since the newlib nano specs are not installed by default for all arm-none-eabi- tool-chains, # ATTENTION: since the newlib nano specs are not installed by default for all arm-none-eabi- tool-chains,
......
...@@ -17,7 +17,7 @@ export FLASHER = mspdebug ...@@ -17,7 +17,7 @@ export FLASHER = mspdebug
ifeq ($(strip $(PORT)),) ifeq ($(strip $(PORT)),)
export PORT = /dev/ttyUSB0 export PORT = /dev/ttyUSB0
endif endif
export HEXFILE = $(BINDIR)$(PROJECT).hex export HEXFILE = $(BINDIR)$(APPLICATION).hex
export FFLAGS = -d $(PORT) -j uif "prog $(HEXFILE)" export FFLAGS = -d $(PORT) -j uif "prog $(HEXFILE)"
export INCLUDES += -I$(RIOTBOARD)/wsn430-common/include export INCLUDES += -I$(RIOTBOARD)/wsn430-common/include
......
...@@ -19,7 +19,7 @@ export FLASHER = goodfet.bsl ...@@ -19,7 +19,7 @@ export FLASHER = goodfet.bsl
ifeq ($(strip $(PORT)),) ifeq ($(strip $(PORT)),)
export PORT = /dev/ttyUSB0 export PORT = /dev/ttyUSB0
endif endif
export HEXFILE = $(BINDIR)$(PROJECT).hex export HEXFILE = $(BINDIR)$(APPLICATION).hex
export FFLAGS = --z1 -I -c $(PORT) -r -e -p $(HEXFILE) export FFLAGS = --z1 -I -c $(PORT) -r -e -p $(HEXFILE)
export OFLAGS = -O ihex export OFLAGS = -O ihex
......
...@@ -4,7 +4,7 @@ OBJECTS = system_LPC17xx.o startup_LPC17xx.o main.o ...@@ -4,7 +4,7 @@ OBJECTS = system_LPC17xx.o startup_LPC17xx.o main.o
CC_SYMBOLS = -DTARGET_LPC1769 -DTOOLCHAIN_GCC_ARM -DNDEBUG -D__CORTEX_M3 CC_SYMBOLS = -DTARGET_LPC1769 -DTOOLCHAIN_GCC_ARM -DNDEBUG -D__CORTEX_M3
LD_FLAGS = -mcpu=cortex-m3 -mthumb -Wl,--gc-sections,-Map=$(PROJECT).map,--cref --specs=nano.specs LD_FLAGS = -mcpu=cortex-m3 -mthumb -Wl,--gc-sections,-Map=$(APPLICATION).map,--cref --specs=nano.specs
LD_SYS_LIBS = -lc -lgcc -lnosys LD_SYS_LIBS = -lc -lgcc -lnosys
all: $(BINDIR)$(MODULE).a all: $(BINDIR)$(MODULE).a
...@@ -15,10 +15,10 @@ include $(RIOTBASE)/Makefile.base ...@@ -15,10 +15,10 @@ include $(RIOTBASE)/Makefile.base
nxpsum: nxpsum:
$(CCLOCAL) nxpsum.c -std=c99 -o nxpsum $(CCLOCAL) nxpsum.c -std=c99 -o nxpsum
#$(PROJECT).elf: $(OBJECTS) $(SYS_OBJECTS) #$(APPLICATION).elf: $(OBJECTS) $(SYS_OBJECTS)
# $(LD) $(LD_FLAGS) -T$(LINKER_SCRIPT) $(LIBRARY_PATHS) -o $@ $(addprefix $(BUILD_DIR), $^) $(LIBRARIES) $(LD_SYS_LIBS) $(LIBRARIES) $(LD_SYS_LIBS) # $(LD) $(LD_FLAGS) -T$(LINKER_SCRIPT) $(LIBRARY_PATHS) -o $@ $(addprefix $(BUILD_DIR), $^) $(LIBRARIES) $(LD_SYS_LIBS) $(LIBRARIES) $(LD_SYS_LIBS)
$(PROJECT).bin: $(PROJECT).elf nxpsum $(APPLICATION).bin: $(APPLICATION).elf nxpsum
$(OBJCOPY) -O binary $< $@ $(OBJCOPY) -O binary $< $@
# Compute nxp checksum on .bin file here # Compute nxp checksum on .bin file here
./nxpsum $@ ./nxpsum $@
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
#### ####
# Set the name of your application: # Set the name of your application:
export PROJECT = foobar export APPLICATION = foobar
# 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 export BOARD ?= native
......
...@@ -22,32 +22,32 @@ ...@@ -22,32 +22,32 @@
DOXYFILE_ENCODING = UTF-8 DOXYFILE_ENCODING = UTF-8
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
# by quotes) that should identify the project. # by quotes) that should identify the project.
PROJECT_NAME = "6LoWPAN Border Router linux driver" PROJECT_NAME = "6LoWPAN Border Router linux driver"
# The PROJECT_NUMBER tag can be used to enter a project or revision number. # The PROJECT_NUMBER tag can be used to enter a project or revision number.
# This could be handy for archiving the generated documentation or # This could be handy for archiving the generated documentation or
# if some version control system is used. # if some version control system is used.
PROJECT_NUMBER = PROJECT_NUMBER =
# Using the PROJECT_BRIEF tag one can provide an optional one line description # Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer # for a project that appears at the top of each page and should give viewer
# a quick idea about the purpose of the project. Keep the description short. # a quick idea about the purpose of the project. Keep the description short.
PROJECT_BRIEF = PROJECT_BRIEF =
# With the PROJECT_LOGO tag one can specify an logo or icon that is # With the PROJECT_LOGO tag one can specify an logo or icon that is
# included in the documentation. The maximum height of the logo should not # included in the documentation. The maximum height of the logo should not
# exceed 55 pixels and the maximum width should not exceed 200 pixels. # exceed 55 pixels and the maximum width should not exceed 200 pixels.
# Doxygen will copy the logo to the output directory. # Doxygen will copy the logo to the output directory.
PROJECT_LOGO = PROJECT_LOGO =
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put. # base path where the generated documentation will be put.
# If a relative path is entered, it will be relative to the location # If a relative path is entered, it will be relative to the location
# where doxygen was started. If left blank the current directory will be used. # where doxygen was started. If left blank the current directory will be used.
......
...@@ -9,7 +9,7 @@ flash() { ...@@ -9,7 +9,7 @@ flash() {
run_tests() { run_tests() {
TESTDIR=projects/${1}/tests TESTDIR=projects/${1}/tests
flash ${PROJECT} || return flash ${APPLICATION} || return
for tst in `ls ${TESTDIR}/`; do for tst in `ls ${TESTDIR}/`; do
echo "Project \"${1}\": Running test ${tst}..." echo "Project \"${1}\": Running test ${tst}..."
$TESTDIR/$tst || ( $TESTDIR/$tst || (
...@@ -24,17 +24,17 @@ echo "Running tests..." ...@@ -24,17 +24,17 @@ echo "Running tests..."
echo echo
for i in projects/*; do for i in projects/*; do
export PROJECT=`basename $i` export APPLICATION=`basename $i`
if [ -d projects/${PROJECT}/tests ]; then if [ -d projects/${APPLICATION}/tests ]; then
{ {
echo "Testing project ${PROJECT}..." echo "Testing project ${APPLICATION}..."
PORT="`sh ${TOOLROOT}/tools/lock_board.sh`" PORT="`sh ${TOOLROOT}/tools/lock_board.sh`"
FLASHUTIL_SHELL="sh -c" FLASHUTIL_SHELL="sh -c"
echo "Using Target connecting to ${PORT}." echo "Using Target connecting to ${PORT}."
export PORT FLASHUTIL_SHELL export PORT FLASHUTIL_SHELL
run_tests ${PROJECT} run_tests ${APPLICATION}
sh ${TOOLROOT}/tools/unlock_board.sh ${PORT} sh ${TOOLROOT}/tools/unlock_board.sh ${PORT}
} 2>&1 } 2>&1
......
...@@ -70,12 +70,12 @@ ...@@ -70,12 +70,12 @@
* RIOT uses GNU make as build system. The simplest way to compile and link a * RIOT uses GNU make as build system. The simplest way to compile and link a
* application (application or library) with RIOT, is to set up a Makefile providing * application (application or library) with RIOT, is to set up a Makefile providing
* at least the following variables: * at least the following variables:
* * PROJECT * * APPLICATION
* * BOARD * * BOARD
* * RIOTBASE * * RIOTBASE
* *
* and an instruction to include the `Makefile.include`, located in RIOT's root * and an instruction to include the `Makefile.include`, located in RIOT's root
* directory. `PROJECT` should contain the (unique) name of your application, `BOARD` * directory. `APPLICATION` should contain the (unique) name of your application, `BOARD`
* specifies the platform the application should be built for by default, and * specifies the platform the application should be built for by default, and
* `RIOTBASE` specifies the path to your copy of the RIOT repository (note, that * `RIOTBASE` specifies the path to your copy of the RIOT repository (note, that
* you may want to use `$(CURDIR)` here, to give a relative path). You can use Make's * you may want to use `$(CURDIR)` here, to give a relative path). You can use Make's
......
# name of your application # name of your application
export PROJECT = ccn-lite-client export 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 export BOARD ?= native
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment