mirror of
https://gitlab.freedesktop.org/pkg-config/pkg-config.git
synced 2025-12-28 20:00:05 +01:00
To ensure that pkg-config has been built and updated before running the test suite, complete the top directory before descending to the check directory.
39 lines
832 B
Makefile
39 lines
832 B
Makefile
if USE_INSTALLED_GLIB
|
|
included_glib_includes = @GLIB_CFLAGS@
|
|
pkg_config_LDADD=@GLIB_LIBS@
|
|
else
|
|
GLIB_SUBDIR = glib-1.2.10
|
|
included_glib_includes = -I$(top_srcdir)/glib-1.2.10 -I$(top_builddir)/glib-1.2.10
|
|
pkg_config_LDADD=glib-1.2.10/libglib.la
|
|
endif
|
|
|
|
if USE_INSTALLED_POPT
|
|
pkg_config_LDADD += $(POPT_LIBS)
|
|
else
|
|
pkg_config_LDADD += popt/libpopt.la
|
|
popt_includes = -I$(top_srcdir)/popt
|
|
POPT_SUBDIR = popt
|
|
endif
|
|
|
|
SUBDIRS = $(GLIB_SUBDIR) $(POPT_SUBDIR) . check
|
|
|
|
m4dir = $(datadir)/aclocal
|
|
m4_DATA = pkg.m4
|
|
|
|
dist_doc_DATA = pkg-config-guide.html
|
|
|
|
man_MANS = pkg-config.1
|
|
EXTRA_DIST = $(m4_DATA) $(man_MANS) README.win32
|
|
|
|
bin_PROGRAMS = pkg-config
|
|
AM_CFLAGS=@WARN_CFLAGS@
|
|
|
|
INCLUDES=-DPKG_CONFIG_PC_PATH="\"$(pc_path)\"" $(included_glib_includes) \
|
|
$(popt_includes)
|
|
|
|
pkg_config_SOURCES= \
|
|
pkg.h \
|
|
pkg.c \
|
|
parse.h \
|
|
parse.c \
|
|
main.c
|