ad of
D:\foxbms2\foxbms\EclipseWorkspace\Project\Debug\src\test /stm32_ub_usb_cdc.o
-Ursprüngliche Nachricht-
Von: Rakesh Sharma [mailto:sharma...@hotmail.com]
Gesendet: Mittwoch, 18. November 2015 09:28
An: Thomas Christian
Cc: help-make@gnu.org
Betreff: Re: make help
Guten morgen,
In
ficient to set 'help-make@gnu.org' to CC?
-Ursprüngliche Nachricht-
Von: Rakesh Sharma [mailto:sharma...@hotmail.com]
Gesendet: Mittwoch, 18. November 2015 09:28
An: Thomas Christian
Cc: help-make@gnu.org
Betreff: Re: make help
Guten morgen,
In that case
On Tue, 2015-11-17 at 07:40 +, Thomas Christian wrote:
> However when I add a second path to SUBDIRS variable I get the same
> error, again.
>
> SUBDIRS := \
> src/test/usb_cdc_lolevel \
> src/module/cpu
This can't work, the way you've written your makefile.
Consider just this statement:
>
='src/test/usb_cdc_lolevel src/module/cpu'
When you use multiple paths within a variable, how do you separate them in this
case?
Thank you for your help :)
Christian
Von: Rakesh Sharma [mailto:sharma...@hotmail.com]
Gesendet: Dienstag, 17. November 2015 05:20
An: Thomas Christian
Be
Hello!
I am currently setting up a make file (at least I try) for building a firmware
image for a cortex M4 MCU.
However I am struggeling at this point:
DIR := \
D:/test/
SUBDIRS := \
src/test/usb_cdc_lolevel
C_SRCS := \
$(wildcard $(DIR)src/test/usb_cdc_lolevel/*.c)
OBJS := \
$(patsubst $(D
Hello, all
I'm using make 3.79 to develop my software .
I have an idea that using text based GUI to build my project.In this
interface, I can choose which part of code will be built easily instead of
inputting the parameter followed by the make command.
Would you please give me some help to