Hello

I have a makefile

main: libmain.a
          $(LINK) $^ -o $@

The above makefile yield following:
libmain.a -o main
make: libmain.a: command not found
make *** [main] Error 127

I think make cannot recognize a $(LINK) variable and try to interpret the
next word like command and of course libmain.a is not a command.
But what i need to use insteed $(LINK) ?
_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to