Line 72:
Line 72:
i don't want to start a drama like, but it should be so easy to add GRRLIB to your framework project, then only code a wrapper ( MLlib_yourfunction calling GRRLIB_our ) and all could be respected without any problem ;) and to finnish, remember that open source is a philosophy based upon respect and sharing !!! --[[User:NoNameNo|NoNameNo]] 16:31, 1 July 2009 (UTC)
i don't want to start a drama like, but it should be so easy to add GRRLIB to your framework project, then only code a wrapper ( MLlib_yourfunction calling GRRLIB_our ) and all could be respected without any problem ;) and to finnish, remember that open source is a philosophy based upon respect and sharing !!! --[[User:NoNameNo|NoNameNo]] 16:31, 1 July 2009 (UTC)
−
=== Please fix your Makefile ===
+
=== Please do not use this program or Makefile ===
the Makefile has a very bugged make clean. it is using /include instead of include which can cause major issues. fix this before others suffer the same fate I did. [[User:Megazig|Megazig]] 02:45, 15 October 2009 (UTC)
the Makefile has a very bugged make clean. it is using /include instead of include which can cause major issues. fix this before others suffer the same fate I did. [[User:Megazig|Megazig]] 02:45, 15 October 2009 (UTC)
Line 80:
Line 80:
:on a *nix system, / is the root of the filesystem, so /include is the include directory on the root NOT the include directory in the MLlib directory or wherever. afaict this is what megazig is complaining about. --[[User:Yossi|Yossi]] 07:18, 15 October 2009 (UTC)
:on a *nix system, / is the root of the filesystem, so /include is the include directory on the root NOT the include directory in the MLlib directory or wherever. afaict this is what megazig is complaining about. --[[User:Yossi|Yossi]] 07:18, 15 October 2009 (UTC)
+
::thank you Yossi. that is exactly what I'm talking about. you use /include which is the include folder on the root of a *nix system. delete that and mess up a system. Very poor Makefile.
+
::Here's what your absolutely terrible Makefile does.
+
megazig@megazig-desktop mllib % make clean 5:09:55<br />
+
make: /home/megazig/devkitpro/devkitPPC/bin/powerpc-eabi-gcc: Command not found<br />
+
rm -fr /include<br />
+
rm -fr /lib<br />
+
rm: cannot remove `/lib/libpcsclite.so.1.0.0': Permission denied<br />
+
rm: cannot remove `/lib/libthread_db.so.1': Permission denied<br />
+
rm: cannot remove `/lib/udev/scsi_id': Permission denied<br />
+
rm: cannot remove `/lib/udev/fstab_import': Permission denied<br />
+
rm: cannot remove `/lib/udev/usb_id': Permission denied<br />
+
rm: cannot remove `/lib/udev/firmware.sh': Permission denied<br />
+
rm: cannot remove `/lib/udev/pcmcia-check-broken-cis': Permission denied [[User:Megazig|Megazig]] 10:15, 15 October 2009 (UTC)