Hello,
I want to create Fat binary using Makefile.
For that I create one makefile and try to build using terminal.
I got error "*** missing seperator. Stop" error.
I also attached makefile(Remove txt from attachement).
Please help me..
Thanks in advance.
You should probably take a look at the Make manual - https://www.gnu.org/software/make/manual/make.html
You appear to have commands where dependencies should be and commands for a target should be indented under the target.
Answers
You should probably take a look at the Make manual - https://www.gnu.org/software/make/manual/make.html
You appear to have commands where dependencies should be and commands for a target should be indented under the target.
Thanks David...