mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
9fbff2f4d5
o All instances of LIBADD/LDADD have a corresponding DEPENDENCIES specificatiion. o libraries now use a lib_ldflags macro to keep things consistent o duplication of source/lib names has been minimized (particularly in the libraries; more work needs to be done for the executables) o automake spec blocks have been organized (again, more work needs to be done for the executables)
18 lines
473 B
Makefile
18 lines
473 B
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
AM_CFLAGS= @PREFER_PIC@ $(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= \
|
|
image.c pcx.c png.c tga.c
|
|
|
|
EXTRA_DIST=
|