mirror of
https://gitlab.freedesktop.org/pkg-config/pkg-config.git
synced 2026-02-05 11:10:28 +01:00
Author: tfheen
Date: 2005-03-29 07:09:37 GMT
2005-03-29 Tollef Fog Heen <tfheen@err.no>
* check/check-cflags, check/check-define-variable,
check/check-libs, check/common, check/Makefile.am,
check/simple.pc: Add simple test framework and begin writing
tests.
* Makefile.am, configure.in: Make in check/ as well.
36 lines
637 B
Makefile
36 lines
637 B
Makefile
if USE_INSTALLED_GLIB
|
|
included_glib_includes = @GLIB_CFLAGS@
|
|
pkg_config_LDADD=@GLIB_LIBS@
|
|
else
|
|
SUBDIRS = glib-1.2.8 check
|
|
included_glib_includes = -I./glib-1.2.8
|
|
pkg_config_LDADD=glib-1.2.8/libglib.la
|
|
endif
|
|
|
|
m4dir = $(datadir)/aclocal
|
|
m4_DATA = pkg.m4
|
|
|
|
man_MANS = pkg-config.1
|
|
EXTRA_DIST = $(m4_DATA) $(man_MANS) README.win32
|
|
|
|
bin_PROGRAMS = pkg-config
|
|
|
|
INCLUDES=-DPKG_CONFIG_PC_PATH="\"$(pc_path)\"" $(included_glib_includes)
|
|
|
|
pkg_config_SOURCES= \
|
|
pkg.h \
|
|
pkg.c \
|
|
partial-glib.h \
|
|
partial-glib.c \
|
|
parse.h \
|
|
parse.c \
|
|
main.c \
|
|
findme.c \
|
|
findme.h \
|
|
popt.c \
|
|
popt.h \
|
|
poptconfig.c \
|
|
popthelp.c \
|
|
poptint.h \
|
|
poptparse.c
|
|
|