Makefile.am 440 B

123456789101112131415161718192021222324252627
  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)