File: Makefile.am

package info (click to toggle)
pkg-config 0.22-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 4,724 kB
  • ctags: 2,474
  • sloc: ansic: 22,685; sh: 11,322; makefile: 299
file content (38 lines) | stat: -rw-r--r-- 690 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
if USE_INSTALLED_GLIB
included_glib_includes = @GLIB_CFLAGS@
pkg_config_LDADD=@GLIB_LIBS@
else
GLIB_SUBDIR = glib-1.2.8
included_glib_includes = -I./glib-1.2.8
pkg_config_LDADD=glib-1.2.8/libglib.la
endif
SUBDIRS = $(GLIB_SUBDIR) check

m4dir = $(datadir)/aclocal
m4_DATA = pkg.m4

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)

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