mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 19:36:18 +01:00
2fb6877346
2008-03-05 Havoc Pennington <hp@redhat.com> * configure.ac: Take advantage of a libffi.pc if one exists, as it does on Fedora 8. Make libffi a hard requirement, since it was in practice anyway (was not really conditional in the code or makefile, only in configure). svn path=/trunk/; revision=121
22 lines
527 B
Makefile
22 lines
527 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
include $(top_srcdir)/gcov.mak
|
|
|
|
INCLUDES = -DGIREPO_DEFAULT_SEARCH_PATH="\"$(libdir)\""
|
|
|
|
lib_LTLIBRARIES = libgirepository.la
|
|
|
|
libgirepository_la_SOURCES = \
|
|
girepository.c \
|
|
gmetadata.h \
|
|
gmetadata.c \
|
|
ginfo.c \
|
|
ginvoke.c
|
|
libgirepository_la_CPPFLAGS = $(GIREPO_CFLAGS)
|
|
libgirepository_la_LIBADD = $(GIREPO_LIBS)
|
|
|
|
girepodir = $(includedir)/glib-2.0/gobject-introspection
|
|
girepo_HEADERS = girepository.h
|
|
|
|
GCOVSOURCES = $(libgirepository_la_SOURCES)
|