RE: How can I trigger a makefile through Maven? is there any plugin for this?

2012-05-04 Thread bettypop
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

Re: How can I trigger a makefile through Maven? is there any plugin for this?

2012-04-25 Thread bettypop
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

Re: How can I trigger a makefile through Maven? is there any plugin for this?

2012-04-25 Thread bettypop
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

Re: How can I trigger a makefile through Maven? is there any plugin for this?

2012-04-25 Thread bettypop
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

Re: How can I trigger a makefile through Maven? is there any plugin for this?

2012-04-25 Thread bettypop
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

Re: How can I trigger a makefile through Maven? is there any plugin for this?

2012-04-25 Thread bettypop
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] --

How can I trigger a makefile through Maven? is there any plugin for this?

2012-04-24 Thread bettypop
-- 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. -