On Tue, 2018-10-23 at 10:07 -0500, Deyesta wrote:
> OnMyOwnTypeSupportImpl.h OnMyOwnTypeSupport.idl
> OnMyOwn:onMyOwnTypeSupportImpl.java OnMyOwnTypeSupportImpl.cpp:
> OnMyOwn.idl ...
It's difficult to understand this because your mail client wrapped all
the lines.
However, I believe the issue i
Hello,
I trying to compile a new project using opendds generation system.
I get the following error when I use make :
make[1]: Entering directory 'blurred/OpenDDS-3.13/java/tests/onMyOwn'
GNUmakefile.OnMyOwn:308: *** multiple target patterns. Stop.
make[1]: Leaving directory 'blurred/OpenDDS-3.1
Thanks,
the vpath construction works fine!
Cheers
Bastian
On Fri, Nov 9, 2012 at 7:00 PM, Paul Smith wrote:
> Simpler than this is to use VPATH; that's what it's for.
>
> VPATH = test/a test/b
>
> %.o : %.c
> COMPILE ...
>
> all: a.o b.o
--
Bastian Be
On Fri, 2012-11-09 at 19:22 +0200, Oleksandr Gavenko wrote:
> %.o: %.c
> COMPILE...
>
> and handle complete build by:
>
> C_FILES := $(wildcard */*.c */*/*.c */*/*/*.c)
> O_FILES := $(C_FILES:.c=.o)
>
> %.o: %.c
> COMPILE...
>
> $(APP): $(O_FILES)
> LINK...
>
> The only
On 2012-11-09, Bastian Beischer wrote:
> %.o: ./*/%.c
> COMPILE...
Very danger construction. It is not documented by 'info make'.
You can rewrite your rule to:
%.o: %.c
COMPILE...
and handle complete build by:
C_FILES := $(wildcard */*.c */*/*.c */*/*/*.c)
O_FILES := $(C_FILES
We are trying to achieve the following: For a list of object file
targets our source files reside in many different directories. So we
used a rule like this one:
%.o: ./*/%.c
COMPILE...
to compile all of those object files. This worked fine with Make 3.81
but does not work anymore with Ma
> There is no implicit clean target.
>
> If you run "make clean" and something happens, then somewhere in your
> makefile environment you have created a "clean" target and that target is
> being invoked. There's no built-in version of "clean".
Thanks Paul, sorry for my dumb question. I have now
On Thu, 2011-05-19 at 11:51 +0100, David Aldrich wrote:
> My makefile does not define target 'clean' so I must be using the implicit
> clean target.
There is no implicit clean target.
If you run "make clean" and something happens, then somewhere in your
makefile environment you have created a "c
Hi
I have noticed a minor difference in behaviour of 'make clean' when upgrading
from Centos 5.3 to Centos 5.5.
When I run 'make clean' in Centos 5.3, I get no warnings. When I run it in
Centos 5.5 I get:
"Warning: --directory (-d) option is undocumented and no-op.
Use -rf for deleting non-e
Hello to everyone,
I have a problem.
After running the command make I got the following error:
make[1]: Entering directory `/home/quisillo/Scrivania/OpenWRT/trunk'
make[2]: Entering directory
`/home/quisillo/Scrivania/OpenWRT/trunk/package/iptables'
Makefile:336: *** missing separator. S
Hello,
> I have make file that I do it by Code Composer Studio
> When I building on the command line I do following steps:
> 1. run DosRun.bat
> 2. I write command: make file.mak
I don't know Code Composer Studio and it doesn't have anything to do with
GNU make really.
The DosRun.bat
Hello
I have make file that I do it by Code Composer Studio
When I building on the command line I do following steps:
1. run
DosRun.bat
2. I
write command: make file.mak
After this command I have error massage:
C:\ti>make
'make' is not recognized as an internal or ext
%% alejandro alvarado <[EMAIL PROTECTED]> writes:
aa> i get this error while doing #make
aa> node007:~/myri/Myrinet/gm-2.1.1_Linux # make
aa> make: /lib/modules/2.4.21-143-smp//Makefile: No such file or directory
aa> make: *** No rule to make target `/lib/modules/2.4.21-143-smp//Makefile'.
i get this error while doing #make
node007:~/myri/Myrinet/gm-2.1.1_Linux # make
make: /lib/modules/2.4.21-143-smp//Makefile: No such file or directory
make: *** No rule to make target `/lib/modules/2.4.21-143-smp//Makefile'.
Stop.
make: *** No rule to make target
`/lib/modules/2.4.21-143-smp/bu
Hi Sergio,
on first inspection, you seem to have inherited some Windows/mac(?) makefiles, and got the line endings
wrong. Your lines seem to terminate in .
I'm not quite sure what your make will make of that, but my editor shows empty lines
between every two lines containing instructions.
Fix tha
Hi, my name is Sergio
I didn´t included the next information in my last mail:
This program built for i686-pc-linux-gnu
I have a problem with make. I have tried to compile a program (I didn´t write
this programm) with make but I have the next error
Hi, my name is Sergio
I have a problem with make. I have tried to compile a program with make but I have the
next error
/project/hhisvc/build/linux > make
', needed by `all'. Stop.target `
I have read the manual but I did not find a topic about the used of ' , ' I am
Firstly i must apologise , the note i originally intended to send had far
more info than the output from the w32.bat file, I was in a rush and didn't
cut and paste eevrything.
Any way.
The make file looks to be created ok but when I attempt to use it i get the
following error :-
gnumake : inter
18 matches
Mail list logo