$(MAKE) binary addons for tvOS
#1
I am trying to build one binary pvr.nextpvr or multiple pvr using the instruction on GitHub but whatever command line I try fails.  I believe the issue with the $(MAKE) variable since I can build with make.  When I try command like this on any shell

$(MAKE) -C /Users/martin/kodi/tools/depends/target/binary-addons clean I get

MAKE: *** No targets specified and no makefile found. Stop.
zsh: command not found: -C

Does anyone know how to set this on macOS?   

/usr/bin/make -v and the Xcode CLI seem to be the same.  which make show /usr/bin/make

Thanks in advance.
Reply
#2
You have to run the configure step for a kodi build. It generates the makefile.include for the variable stuff
Reply
#3
I did run bootstrap and configure as shown on the wiki, and as I wrote Kodi.app does compile fine for tvOS,  so I would assume that means the variables are set.   Is there another configure for binary addons?
Reply
#4
Why are you using $(MAKE) at all? thats just going to be some shell variable. Just use make
Reply
#5
I am not running it by choice, the  command on the wiki xcodebuild -config "Debug" -target binary-addons calls this script which uses it.

https://paste.kodi.tv/esumudiceh.kodi
Reply
#6
No idea when that broke. Use the following https://github.com/fuzzard/xbmc/commit/7...b9713d70ba
Reply
#7
Ok that patch expands it to /usr/bin/make so it seems to work now.

I am building Nexus so I guess it has been a while.

Thanks.

Martin
Reply

Logout Mark Read Team Forum Stats Members Help
$(MAKE) binary addons for tvOS0