btuduri / palibds

Automatically exported from code.google.com/p/palibds
0 stars 0 forks source link

palib example makefiles do things the hard way #24

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What version of PAlib are you using ?
PAlib061025.zip

You make the PALib example makefiles much more complicated than they need
to be. For example, you can make things much simpler. Instead of:
LIBS := -lnds9
LIBSPA := -lpa9

Just do this:
LIBS := -lpa9 -lnds9

Also, the wifi and fatlibs should be separate, so you could do:
LIBS  := -lpa9 -ldswifi9 -lfat -lnds9

Another example. Instead of doing this:
LIBDIRS       :=      $(DEVKITPRO)/libnds
LIBDIRPA      :=      $(PAPATH)

You should do this:
LIBDIRS       :=      $(DEVKITPRO)/libnds $(PAPATH)

Original issue reported on code.google.com by dro...@gmail.com on 28 Oct 2006 at 1:20

GoogleCodeExporter commented 9 years ago
Not that major ^^

Original comment by Molo...@gmail.com on 28 Oct 2006 at 6:38

GoogleCodeExporter commented 9 years ago
Closed all currently open issues to start with a clean slate for new use of
the Google Code site.

Original comment by kiswa....@gmail.com on 1 Nov 2008 at 2:30