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.

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