056e53c2c5
Make each convenience library depend on the ones it requires, which is pretty straightforward for us as they each only depend on a single other one, avoiding any worry about double linking of static objects.
14 lines
257 B
Makefile
14 lines
257 B
Makefile
noinst_LTLIBRARIES = libmio.la
|
|
|
|
AM_CPPFLAGS = -DG_LOG_DOMAIN=\"MIO\" #-DMIO_DEBUG
|
|
AM_CFLAGS = $(GTK_CFLAGS) @LIBGEANY_CFLAGS@
|
|
|
|
libmio_la_LIBADD = $(GTK_LIBS)
|
|
libmio_la_SOURCES = mio.c
|
|
|
|
EXTRA_DIST = \
|
|
mio.h \
|
|
mio-file.c \
|
|
mio-memory.c \
|
|
makefile.win32
|