| 123456789101112131415161718192021222324252627 |
- ## Process this file with automake to produce Makefile.in
- localedir = $(datadir)/locale
- INCLUDES = \
- -DLOCALEDIR=\"$(localedir)\" \
- -idirafter $(top_srcdir)/libcompat \
- -I$(top_srcdir)/lib
- bin_PROGRAMS = dpkg-deb
- dpkg_deb_SOURCES = \
- dpkg-deb.h \
- build.c \
- extract.c \
- info.c \
- main.c
- dpkg_deb_LDADD = \
- ../lib/libdpkg.a \
- ../libcompat/libcompat.a \
- $(LIBINTL) \
- $(ZLIB_LIBS) \
- $(BZ2_LIBS) \
- $(SELINUX_LIBS)
|