forked from ariadne/pkgconf
13 lines
301 B
Makefile
13 lines
301 B
Makefile
PROG = pkgconf${PROG_SUFFIX}
|
|
SRCS = main.c parse.c pkg.c bsdstubs.c getopt_long.c
|
|
|
|
include buildsys.mk
|
|
|
|
CFLAGS += -DPKG_DEFAULT_PATH=\"${libdir}/pkgconfig\"
|
|
|
|
install-extra:
|
|
mkdir -p $(DESTDIR)/$(datarootdir)/aclocal
|
|
install -c -m644 pkg.m4 $(DESTDIR)/$(datarootdir)/aclocal/pkg.m4
|
|
|
|
include .deps
|