]> err.no Git - pkg-config/blob - Makefile.am
Print out \r\n on windows, not just \n
[pkg-config] / Makefile.am
1 if USE_INSTALLED_GLIB
2 included_glib_includes = @GLIB_CFLAGS@
3 pkg_config_LDADD=@GLIB_LIBS@
4 else
5 GLIB_SUBDIR = glib-1.2.10
6 included_glib_includes = -I./glib-1.2.10
7 pkg_config_LDADD=glib-1.2.10/libglib.la
8 endif
9 SUBDIRS = $(GLIB_SUBDIR) check
10
11 m4dir = $(datadir)/aclocal
12 m4_DATA = pkg.m4
13
14 man_MANS = pkg-config.1
15 EXTRA_DIST = $(m4_DATA) $(man_MANS) README.win32
16
17 bin_PROGRAMS = pkg-config
18 AM_CFLAGS=@WARN_CFLAGS@
19
20 INCLUDES=-DPKG_CONFIG_PC_PATH="\"$(pc_path)\"" $(included_glib_includes)
21
22 pkg_config_SOURCES= \
23         pkg.h \
24         pkg.c \
25         parse.h \
26         parse.c \
27         main.c \
28         findme.c \
29         findme.h \
30         popt.c \
31         popt.h \
32         poptconfig.c \
33         popthelp.c \
34         poptint.h \
35         poptparse.c
36