Actually there are existing makefiles that we want to use, instead of
converting them again into xml files. So I want to know how I can use my
makefiles in Maven. I read up on the *Maven Make Orchestration Plugin*. But
there are very less resources on the net about it. Can anyone throw some
light o
It's not an issue with the makefile, coz' it executes properly when run
independently. It compiles my source file and creates a .exe.
*This is my makefile*:
all: hello
hello: helloWorld.o
gcc helloWorld.o -o hello
helloWorld.o: helloWorld.c
gcc -c helloWorld.c
clean:
rm -rf
Hi,
I did as you said.
But it is not compiling the target which I have mentioned in the makefile.
My target is a C file and in the makefile I am just compiling the target. My
updated POM.xml and the result I got on execution-
*POM.xml*
http://maven.apache.org/POM/4.0.0";
xmlns:xsi="http://w
ven-native-example>
Thomas Sundberg-2 wrote
>
> On Wed, Apr 25, 2012 at 10:24, bettypop <yashu.s30@> wrote:
>> Basically, it is not recognizing the makefile as an operable program at
>> all
>
> Make files are not executables so this should not surprise anybody.
&g
Basically, it is not recognizing the makefile as an operable program at all
--
View this message in context:
http://maven.40175.n5.nabble.com/How-can-I-trigger-a-makefile-through-Maven-is-there-any-plugin-for-this-tp5663921p5664179.html
Sent from the Maven - Users mailing list archive at Nabble.c
Hi I am using the maven-exec-plugin. But on trying to compile the build, I
get the following error:
[INFO] Scanning for projects...
[INFO]
[INFO]
[INFO] Building TestProjectMaven 1.0-SNAPSHOT
[INFO]
--
--
View this message in context:
http://maven.40175.n5.nabble.com/How-can-I-trigger-a-makefile-through-Maven-is-there-any-plugin-for-this-tp5663921p5663921.html
Sent from the Maven - Users mailing list archive at Nabble.com.
-