Makefile.am 459 B

12345678910111213141516171819202122232425262728
  1. ## Process this file with automake to produce Makefile.in
  2. localedir = $(datadir)/locale
  3. AM_CPPFLAGS = \
  4. -DLOCALEDIR=\"$(localedir)\" \
  5. -idirafter $(top_srcdir)/lib/compat \
  6. -I$(top_builddir) \
  7. -I$(top_srcdir)/lib
  8. bin_PROGRAMS = dpkg-deb
  9. dpkg_deb_SOURCES = \
  10. dpkg-deb.h \
  11. build.c \
  12. extract.c \
  13. info.c \
  14. main.c
  15. dpkg_deb_LDADD = \
  16. ../lib/dpkg/libdpkg.a \
  17. ../lib/compat/libcompat.a \
  18. $(LIBINTL) \
  19. $(ZLIB_LIBS) \
  20. $(BZ2_LIBS) \
  21. $(SELINUX_LIBS)