mconnect - KDE Connect protocol implementation in Vala/C
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

147 lines
3.5 KiB

  1. # This program is free software; you can redistribute it and/or modify
  2. # it under the terms of the GNU General Public License version 2 as
  3. # published by the Free Software Foundation.
  4. #
  5. # This program is distributed in the hope that it will be useful,
  6. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  7. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  8. # GNU General Public License for more details.
  9. #
  10. # You should have received a copy of the GNU General Public License along
  11. # with this program; if not, write to the Free Software Foundation, Inc.,
  12. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  13. #
  14. # AUTHORS
  15. # Maciek Borzecki <maciek.borzecki (at] gmail.com>
  16. #
  17. # location of *.desktop file, usually /usr/share/applications
  18. applicationsdir = $(datadir)/applications
  19. applications_DATA = \
  20. mconnect.desktop
  21. mconnectdatadir = $(datadir)/mconnect
  22. mconnectdata_DATA = \
  23. mconnect.conf
  24. bin_PROGRAMS = \
  25. mconnect
  26. noinst_PROGRAMS = \
  27. test-mconn-crypt \
  28. test-mconn-crypt-vala
  29. noinst_LTLIBRARIES = \
  30. libmconn-crypt.la
  31. VALAFLAGS = \
  32. --no-color \
  33. -g \
  34. --vapidir=vapi \
  35. --pkg=gio-2.0 \
  36. --pkg=json-glib-1.0 \
  37. --pkg=gee-0.8 \
  38. --pkg=libnotify \
  39. --pkg=posix \
  40. --pkg=gdk-3.0 \
  41. --pkg=atspi-2 \
  42. --vapidir=src/crypt
  43. #-------------------------------------------------------------
  44. mconnect_SOURCES = \
  45. src/mconnect/main.vala \
  46. src/mconnect/discovery.vala \
  47. src/mconnect/packet.vala \
  48. src/mconnect/device.vala \
  49. src/mconnect/devicemanager.vala \
  50. src/mconnect/devicechannel.vala \
  51. src/mconnect/core.vala \
  52. src/mconnect/packethandlerinterface.vala \
  53. src/mconnect/packethandlers.vala \
  54. src/mconnect/notification.vala \
  55. src/mconnect/battery.vala \
  56. src/mconnect/telephony.vala \
  57. src/mconnect/mousepad.vala \
  58. src/mconnect/config.vala
  59. mconnect_LDADD = \
  60. libmconn-crypt.la \
  61. $(MCONNECT_LIBS)
  62. mconnect_CFLAGS = \
  63. $(MCONNECT_CFLAGS) \
  64. -I$(top_srcdir)/src/crypt
  65. mconnect_VALAFLAGS = \
  66. --pkg=mconn-crypt
  67. #-------------------------------------------------------------
  68. libmconn_crypt_la_SOURCES = \
  69. src/crypt/mconn-crypt.c \
  70. src/crypt/mconn-crypt.h
  71. libmconn_crypt_la_CFLAGS = \
  72. $(MCONNECT_CFLAGS)
  73. libmconn_crypt_la_LIBADD = \
  74. $(MCONNECT_LIBS)
  75. #-------------------------------------------------------------
  76. test_mconn_crypt_SOURCES = \
  77. test/mconn-crypt-test.c
  78. test_mconn_crypt_LDADD = \
  79. $(MCONNECT_LIBS) \
  80. libmconn-crypt.la
  81. test_mconn_crypt_CFLAGS = \
  82. $(MCONNECT_CFLAGS) \
  83. -I$(top_srcdir)/src/crypt
  84. #-------------------------------------------------------------
  85. test_mconn_crypt_vala_SOURCES = \
  86. test/mconn-crypt-vala-test.vala
  87. test_mconn_crypt_vala_LDADD = \
  88. $(MCONNECT_LIBS) \
  89. libmconn-crypt.la
  90. test_mconn_crypt_vala_CFLAGS = \
  91. $(MCONNECT_CFLAGS) \
  92. -I$(top_srcdir)/src/crypt
  93. test_mconn_crypt_vala_VALAFLAGS = \
  94. --pkg=mconn-crypt
  95. #-------------------------------------------------------------
  96. # configure will expand bindir to ${exec_prefix}/bin, we want the
  97. # whole thing, that's why mconnect.desktop is generated here and not
  98. # in configure
  99. do_desktop_subst = sed -e 's,[@]bindir[@],${bindir},g'
  100. mconnect.desktop: mconnect.desktop.in
  101. $(do_desktop_subst) < $< > $@
  102. #-------------------------------------------------------------
  103. REV ?= HEAD
  104. git-source-dist:
  105. gitsha=`git rev-list $(REV) -1`; \
  106. git archive --prefix=mconnect-$${gitsha}/ $(REV) | \
  107. gzip -c > mconnect-$${gitsha}.tar.gz
  108. #-------------------------------------------------------------
  109. GEN_FROM_VALA = $(filter %.vala,$(mconnect_SOURCES))
  110. BUILT_SOURCES = \
  111. mconnect.desktop \
  112. $(GEN_FROM_VALA:.vala=.c)
  113. CLEANFILES = $(BUILT_SOURCES)