mirror of
https://gitlab.freedesktop.org/pkg-config/pkg-config.git
synced 2026-01-02 16:40:09 +01:00
Author: tml Date: 2001-10-21 18:40:38 GMT 2001-10-21 Tor Lillqvist <tml@iki.fi> * Makefile.am (EXTRA_DIST): Distribute README.win32. * README.win32: Describe the behaviour in more detail.
36 lines
623 B
Makefile
36 lines
623 B
Makefile
if USE_INSTALLED_GLIB
|
|
pkg_config_CFLAGS = @GLIB_CFLAGS@
|
|
pkg_config_LDFLAGS = @GLIB_LIBS@
|
|
else
|
|
SUBDIRS = glib-1.2.8
|
|
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=-DPKGLIBDIR="\"$(pkglibdir)\"" $(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
|
|
|