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.

144 lines
3.4 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. --vapidir=src/crypt
  41. #-------------------------------------------------------------
  42. mconnect_SOURCES = \
  43. src/mconnect/main.vala \
  44. src/mconnect/discovery.vala \
  45. src/mconnect/packet.vala \
  46. src/mconnect/device.vala \
  47. src/mconnect/devicemanager.vala \
  48. src/mconnect/devicechannel.vala \
  49. src/mconnect/core.vala \
  50. src/mconnect/packethandlerinterface.vala \
  51. src/mconnect/packethandlers.vala \
  52. src/mconnect/notification.vala \
  53. src/mconnect/battery.vala \
  54. src/mconnect/telephony.vala \
  55. src/mconnect/config.vala
  56. mconnect_LDADD = \
  57. libmconn-crypt.la \
  58. $(MCONNECT_LIBS)
  59. mconnect_CFLAGS = \
  60. $(MCONNECT_CFLAGS) \
  61. -I$(top_srcdir)/src/crypt
  62. mconnect_VALAFLAGS = \
  63. --pkg=mconn-crypt
  64. #-------------------------------------------------------------
  65. libmconn_crypt_la_SOURCES = \
  66. src/crypt/mconn-crypt.c \
  67. src/crypt/mconn-crypt.h
  68. libmconn_crypt_la_CFLAGS = \
  69. $(MCONNECT_CFLAGS)
  70. libmconn_crypt_la_LIBADD = \
  71. $(MCONNECT_LIBS)
  72. #-------------------------------------------------------------
  73. test_mconn_crypt_SOURCES = \
  74. test/mconn-crypt-test.c
  75. test_mconn_crypt_LDADD = \
  76. $(MCONNECT_LIBS) \
  77. libmconn-crypt.la
  78. test_mconn_crypt_CFLAGS = \
  79. $(MCONNECT_CFLAGS) \
  80. -I$(top_srcdir)/src/crypt
  81. #-------------------------------------------------------------
  82. test_mconn_crypt_vala_SOURCES = \
  83. test/mconn-crypt-vala-test.vala
  84. test_mconn_crypt_vala_LDADD = \
  85. $(MCONNECT_LIBS) \
  86. libmconn-crypt.la
  87. test_mconn_crypt_vala_CFLAGS = \
  88. $(MCONNECT_CFLAGS) \
  89. -I$(top_srcdir)/src/crypt
  90. test_mconn_crypt_vala_VALAFLAGS = \
  91. --pkg=mconn-crypt
  92. #-------------------------------------------------------------
  93. # configure will expand bindir to ${exec_prefix}/bin, we want the
  94. # whole thing, that's why mconnect.desktop is generated here and not
  95. # in configure
  96. do_desktop_subst = sed -e 's,[@]bindir[@],${bindir},g'
  97. mconnect.desktop: mconnect.desktop.in
  98. $(do_desktop_subst) < $< > $@
  99. #-------------------------------------------------------------
  100. REV ?= HEAD
  101. git-source-dist:
  102. gitsha=`git rev-list $(REV) -1`; \
  103. git archive --prefix=mconnect-$${gitsha}/ $(REV) | \
  104. gzip -c > mconnect-$${gitsha}.tar.gz
  105. #-------------------------------------------------------------
  106. GEN_FROM_VALA = $(filter %.vala,$(mconnect_SOURCES))
  107. BUILT_SOURCES = \
  108. mconnect.desktop \
  109. $(GEN_FROM_VALA:.vala=.c)
  110. CLEANFILES = $(BUILT_SOURCES)