mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-22 06:52:20 +00:00
Change Makefile from ttf examples
This commit is contained in:
parent
f754f25c97
commit
187b8fbbae
3 changed files with 5 additions and 7 deletions
|
@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
|
|||
## [Unreleased][]
|
||||
|
||||
- Fixed compatibility issues with devkitPPC release 39.
|
||||
- Fixed linking problem in examples with FreeType 2.13.2.
|
||||
- Fixed linking problem in examples with FreeType 2.13.2 (pkgrel 1 and 2).
|
||||
- Added `GRRLIB_LoadTTFFromFile()` to load a TTF from a file.
|
||||
- Added `GRRLIB_Ellipse()` to draw an ellipse.
|
||||
- Changed `GRRLIB_PrintfTTF()` and `GRRLIB_PrintfTTFW()` so they use the alpha channel from the `color` parameter.
|
||||
|
|
|
@ -34,9 +34,8 @@ LDFLAGS = -g $(MACHDEP) -Wl,-Map,$(notdir $@).map
|
|||
# any extra libraries we wish to link with the project
|
||||
# the order can-be/is critical
|
||||
#---------------------------------------------------------------------------------
|
||||
LIBS := -lgrrlib
|
||||
LIBS += `freetype-config --libs`
|
||||
LIBS += -lpngu -lpng -ljpeg -lz -lfat
|
||||
LIBS := -lgrrlib -lpngu
|
||||
LIBS += `$(PREFIX)pkg-config freetype2 libpng libjpeg --libs` -lfat
|
||||
#LIBS += -lmodplay -laesnd
|
||||
LIBS += -logc -lm
|
||||
|
||||
|
|
|
@ -34,9 +34,8 @@ LDFLAGS = -g $(MACHDEP) -Wl,-Map,$(notdir $@).map
|
|||
# any extra libraries we wish to link with the project
|
||||
# the order can-be/is critical
|
||||
#---------------------------------------------------------------------------------
|
||||
LIBS := -lgrrlib
|
||||
LIBS += `freetype-config --libs`
|
||||
LIBS += -lpngu -lpng -ljpeg -lz -lfat
|
||||
LIBS := -lgrrlib -lpngu
|
||||
LIBS += `$(PREFIX)pkg-config freetype2 libpng libjpeg --libs` -lfat
|
||||
LIBS += -lwiiuse
|
||||
#LIBS += -lmodplay -laesnd
|
||||
LIBS += -lbte -logc -lm
|
||||
|
|
Loading…
Reference in a new issue