summaryrefslogtreecommitdiff
path: root/amiga/Makefile.target
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2016-04-28 19:18:06 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2016-04-28 19:18:06 +0100
commit180295936b686d194b7b4c25b9a0dc2038ffc4cb (patch)
tree79457e49889bc8d56fa504ab6964596c2d350b34 /amiga/Makefile.target
parente5a05f1c0e1bb7e7388d4fedb584d8ec71be6628 (diff)
downloadnetsurf-180295936b686d194b7b4c25b9a0dc2038ffc4cb.tar.gz
netsurf-180295936b686d194b7b4c25b9a0dc2038ffc4cb.tar.bz2
Use guigfx.library for 8-bit image quantization
This achieves speed-up on OS3/68k platforms where 8-bit modes are more likely to be used, at the expense of lower quality quantization than the former picture.datatype abuse provided. Additionally, caching of BitMaps in palette-mapped modes is now possible. NetSurf now requires guigfx.library (and render.library) in order to start, even on OS4.
Diffstat (limited to 'amiga/Makefile.target')
-rw-r--r--amiga/Makefile.target6
1 files changed, 3 insertions, 3 deletions
diff --git a/amiga/Makefile.target b/amiga/Makefile.target
index 8e167802a..54957f778 100644
--- a/amiga/Makefile.target
+++ b/amiga/Makefile.target
@@ -50,10 +50,10 @@ else
LDFLAGS += $(shell $(PKG_CONFIG) --libs tre)
LDFLAGS += -L$(GCCSDK_INSTALL_ENV)/lib
+ LDFLAGS += -lpbl -liconv
+
ifeq ($(SUBTARGET),os3)
- LDFLAGS += -lpbl -liconv -lamiga
- else
- LDFLAGS += -lpbl -liconv
+ LDFLAGS += -lamiga -lm
endif
endif