Makefile.am 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. ## Process this file with automake to produce Makefile.in
  2. SUBDIRS = test
  3. localedir = $(datadir)/locale
  4. pkgconfdir = $(sysconfdir)/@PACKAGE@
  5. AM_CPPFLAGS = \
  6. -DLOCALEDIR=\"$(localedir)\" \
  7. -DCONFIGDIR=\"$(pkgconfdir)\" \
  8. -idirafter $(top_srcdir)/lib/compat \
  9. -I$(top_builddir) \
  10. -I$(top_srcdir)/lib
  11. EXTRA_DIST = \
  12. libdpkg.pc.in
  13. pkgconfigdir = $(libdir)/pkgconfig
  14. pkgconfig_DATA = libdpkg.pc
  15. lib_LIBRARIES = libdpkg.a
  16. libdpkg_a_SOURCES = \
  17. dlist.h \
  18. ar.c \
  19. buffer.c \
  20. cleanup.c \
  21. command.c \
  22. compress.c \
  23. database.c \
  24. dbmodify.c \
  25. dump.c \
  26. ehandle.c \
  27. file.c \
  28. fields.c \
  29. i18n.h \
  30. lock.c \
  31. log.c \
  32. md5.c md5.h \
  33. mlib.c \
  34. myopt.c \
  35. nfmalloc.c \
  36. parse.c \
  37. parsehelp.c \
  38. path.c \
  39. pkg.c \
  40. pkg-array.c \
  41. pkg-format.c \
  42. pkg-list.c \
  43. pkg-queue.c \
  44. progress.c \
  45. string.c \
  46. subproc.c \
  47. tarfn.c \
  48. test.h \
  49. triglib.c \
  50. trigdeferred.l \
  51. utils.c \
  52. varbuf.c \
  53. vercmp.c
  54. pkginclude_HEADERS = \
  55. ar.h \
  56. buffer.h \
  57. command.h \
  58. compress.h \
  59. dpkg.h \
  60. dpkg-db.h \
  61. file.h \
  62. macros.h \
  63. myopt.h \
  64. parsedump.h \
  65. path.h \
  66. pkg.h \
  67. pkg-array.h \
  68. pkg-format.h \
  69. pkg-list.h \
  70. pkg-queue.h \
  71. progress.h \
  72. string.h \
  73. subproc.h \
  74. tarfn.h \
  75. varbuf.h