blob: 3db848d36cc9a1ff858d6f291823a89f7f854145 (
plain)
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
|
## Process this file with automake to produce Makefile.in
localedir = $(datadir)/locale
AM_CPPFLAGS = \
-DLOCALEDIR=\"$(localedir)\" \
-DADMINDIR=\"$(admindir)\" \
-idirafter $(top_srcdir)/lib/compat \
-I$(top_builddir) \
-I$(top_srcdir)/lib
bin_PROGRAMS = dpkg-split
dpkg_split_SOURCES = \
dpkg-split.h \
info.c \
join.c \
main.c \
queue.c \
split.c
dpkg_split_LDADD = \
../lib/dpkg/libdpkg.la \
$(LIBINTL)
install-data-local:
$(MKDIR_P) $(DESTDIR)$(admindir)/parts
|