0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-01 06:50:59 +00:00
quakeforge/libs/image/Makefile.am
Bill Currie 0cae54d25d Move the tex conversion to libQFimage.
This is for the conversion /to/ paletted textures. The conversion is
necessary for csqc support. In the process, the conversion has been sped up
by implementing a color cache for the conversion process. I haven't
measured the difference yet, but Mr Fixit does seem to load much faster for
the sw renderer than it did before the change (many months old memory).
2021-03-25 18:16:24 +09:00

18 lines
495 B
Makefile

AUTOMAKE_OPTIONS= foreign
AM_CFLAGS= @PREFER_PIC@ $(Z_CFLAGS) $(PNG_CFLAGS)
AM_CPPFLAGS= -I$(top_srcdir)/include
lib_ldflags=-version-info $(QUAKE_LIBRARY_VERSION_INFO) \
-rpath $(libdir) -no-undefined
image_deps=$(top_builddir)/libs/util/libQFutil.la
lib_LTLIBRARIES= libQFimage.la
libQFimage_la_LDFLAGS= $(lib_ldflags)
libQFimage_la_LIBADD= $(image_deps) $(PNG_LIBS)
libQFimage_la_DEPENDENCIES= $(pmage_deps)
libQFimage_la_SOURCES= \
convert.c image.c pcx.c png.c tga.c
EXTRA_DIST=