mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-11 03:46:17 +01:00
89e881b47b
2008-08-20 Colin Walters <walters@verbum.org> * gir/Makefile.am: Rename .gir files using GI namespace. * girepository/girepository.c: Use XDG_DATA_DIRS for looking up typelibs. Also typelibs are now suffixed with .typelib. * tests/invoke/Makefile.am: Only use metadata. * girepository/Makefile.am: Remove unnecessary include. * tests/scanner/Makefile.am: Update using GI namespaces for scanner includes. svn path=/trunk/; revision=422
29 lines
644 B
Makefile
29 lines
644 B
Makefile
include $(top_srcdir)/gcov.mak
|
|
|
|
GCOVSOURCES = $(libgirepository_la_SOURCES)
|
|
|
|
girepodir = $(includedir)/gobject-introspection-1.0/
|
|
girepo_HEADERS = girepository.h
|
|
|
|
lib_LTLIBRARIES = libgirepository.la
|
|
noinst_LTLIBRARIES = libgirepository-parser.la
|
|
|
|
libgirepository_la_SOURCES = \
|
|
girepository.c \
|
|
gtypelib.h \
|
|
gtypelib.c \
|
|
ginfo.c \
|
|
ginvoke.c
|
|
libgirepository_la_CPPFLAGS = $(GIREPO_CFLAGS)
|
|
libgirepository_la_LIBADD = $(GIREPO_LIBS)
|
|
|
|
libgirepository_parser_la_SOURCES = \
|
|
girmodule.c \
|
|
girmodule.h \
|
|
girnode.c \
|
|
girnode.h \
|
|
girparser.c \
|
|
girparser.h
|
|
libgirepository_parser_la_CFLAGS = $(GIREPO_CFLAGS)
|
|
|