Astrabit-ST / ModShot-Core

A fork of mkxp, forked for OneShot, forked for OneShot mods, (not to be confused with the ModShot server)
https://nowaffles.com
GNU General Public License v2.0
19 stars 9 forks source link

Getting errors while building extras with makefile #88

Closed creativegamer03 closed 1 year ago

creativegamer03 commented 1 year ago

I'm having trouble building the extra dependencies with the make command. First was moving libiconv-1.16 to iconv. Exited with error 1; Directory not empty.

cd /home/cg03-dev/Downloads/ModShot-Core/linux/downloads/x86_64; \
tar -xzf libiconv-1.16.tar.gz; \
mv libiconv-1.16 iconv
mv: cannot move 'libiconv-1.16' to 'iconv/libiconv-1.16': Directory not empty
make: *** [Makefile:51: /home/cg03-dev/Downloads/ModShot-Core/linux/downloads/x86_64/iconv/configure] Error 1

After manually emptying the contents in iconv/libiconv-1.16, I am greeted with this:

cd /home/cg03-dev/Downloads/ModShot-Core/linux/downloads/x86_64; \
tar -xzf libiconv-1.16.tar.gz; \
mv libiconv-1.16 iconv
cd /home/cg03-dev/Downloads/ModShot-Core/linux/downloads/x86_64/libnsgif; \
make -j4; make install
make[1]: Entering directory '/home/cg03-dev/Downloads/ModShot-Core/linux/downloads/x86_64/libnsgif'
Making all in include
make[2]: Entering directory '/home/cg03-dev/Downloads/ModShot-Core/linux/downloads/x86_64/libnsgif/include'
make[2]: *** No rule to make target 'all'.  Stop.
make[2]: Leaving directory '/home/cg03-dev/Downloads/ModShot-Core/linux/downloads/x86_64/libnsgif/include'
make[1]: *** [Makefile:414: all-recursive] Error 1
make[1]: Leaving directory '/home/cg03-dev/Downloads/ModShot-Core/linux/downloads/x86_64/libnsgif'
make[1]: Entering directory '/home/cg03-dev/Downloads/ModShot-Core/linux/downloads/x86_64/libnsgif'
Making install in include
make[2]: Entering directory '/home/cg03-dev/Downloads/ModShot-Core/linux/downloads/x86_64/libnsgif/include'
make[2]: *** No rule to make target 'install'.  Stop.
make[2]: Leaving directory '/home/cg03-dev/Downloads/ModShot-Core/linux/downloads/x86_64/libnsgif/include'
make[1]: *** [Makefile:414: install-recursive] Error 1
make[1]: Leaving directory '/home/cg03-dev/Downloads/ModShot-Core/linux/downloads/x86_64/libnsgif'
make: *** [Makefile:93: /home/cg03-dev/Downloads/ModShot-Core/linux/build-x86_64/lib/libnsgif.so] Error 2

Am I missing something, or is this the Makefile's fault? p.s. would love to just bring this to a dm if this issue is like my previous issue i posted here.