Makefile.am 428 B

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