mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
358a844a42
library versioning. From Lasse Collin, thanks!
13 lines
383 B
Makefile
13 lines
383 B
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
AM_CFLAGS= @PREFER_PIC@ $(PNG_CFLAGS)
|
|
AM_CPPFLAGS= -I$(top_srcdir)/include
|
|
|
|
lib_LTLIBRARIES= libQFimage.la
|
|
|
|
libQFimage_la_LDFLAGS= -version-info $(QUAKE_LIBRARY_VERSION_INFO) -no-undefined
|
|
libQFimage_la_LIBADD= $(PNG_LIBS) $(top_builddir)/libs/util/libQFutil.la
|
|
libQFimage_la_DEPENDENCIES=
|
|
libQFimage_la_SOURCES= \
|
|
image.c pcx.c png.c tga.c
|
|
|
|
EXTRA_DIST=
|