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.

158 lines
3.8 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. mconnectctl
  27. noinst_PROGRAMS = \
  28. test-mconn-crypt
  29. noinst_LTLIBRARIES =
  30. VALAFLAGS = \
  31. --no-color \
  32. -g \
  33. --vapidir=vapi \
  34. --pkg=gio-2.0 \
  35. --pkg=gio-unix-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. --pkg=gnutls \
  43. --vapidir=src/crypt
  44. TESTS = \
  45. test-mconn-crypt
  46. #-------------------------------------------------------------
  47. mconnect_SOURCES = \
  48. src/mconnect/main.vala \
  49. src/mconnect/discovery.vala \
  50. src/mconnect/packet.vala \
  51. src/mconnect/device.vala \
  52. src/mconnect/discovereddevice.vala \
  53. src/mconnect/device-proxy.vala \
  54. src/mconnect/devicemanager.vala \
  55. src/mconnect/devicemanager-proxy.vala \
  56. src/mconnect/devicechannel.vala \
  57. src/mconnect/core.vala \
  58. src/mconnect/packethandlerinterface.vala \
  59. src/mconnect/packethandlerinterface-proxy.vala \
  60. src/mconnect/packethandlers.vala \
  61. src/mconnect/packethandlers-proxy.vala \
  62. src/mconnect/notification.vala \
  63. src/mconnect/battery.vala \
  64. src/mconnect/battery-proxy.vala \
  65. src/mconnect/telephony.vala \
  66. src/mconnect/mousepad.vala \
  67. src/mconnect/ping.vala \
  68. src/mconnect/ping-proxy.vala \
  69. src/mconnect/share.vala \
  70. src/mconnect/config.vala \
  71. src/mconnect/application.vala \
  72. src/mconnect/utils.vala \
  73. src/mconnect/property-proxy.vala \
  74. src/crypt/certificate.vala
  75. mconnect_LDADD = \
  76. $(MCONNECT_LIBS)
  77. mconnect_CFLAGS = \
  78. $(MCONNECT_CFLAGS) \
  79. -I$(top_srcdir)/src/crypt
  80. #-------------------------------------------------------------
  81. test_mconn_crypt_SOURCES = \
  82. src/crypt/certificate.vala \
  83. test/mconn-crypt-vala-test.vala
  84. test_mconn_crypt_LDADD = \
  85. $(MCONNECT_LIBS)
  86. test_mconn_crypt_CFLAGS = \
  87. $(MCONNECT_CFLAGS)
  88. test_mconn_crypt_VALAFLAGS = \
  89. --pkg=gio-2.0 \
  90. --pkg=posix \
  91. --pkg=gnutls
  92. #-------------------------------------------------------------
  93. mconnectctl_SOURCES = \
  94. src/mconnectctl/main.vala
  95. mconnectctl_LDADD = \
  96. $(MCONNECT_LIBS)
  97. mconnectctl_CFLAGS = \
  98. $(MCONNECT_CFLAGS)
  99. #-------------------------------------------------------------
  100. # configure will expand bindir to ${exec_prefix}/bin, we want the
  101. # whole thing, that's why mconnect.desktop is generated here and not
  102. # in configure
  103. do_desktop_subst = sed -e 's,[@]bindir[@],${bindir},g'
  104. mconnect.desktop: mconnect.desktop.in
  105. $(do_desktop_subst) < $< > $@
  106. #-------------------------------------------------------------
  107. REV ?= HEAD
  108. git-source-dist:
  109. gitsha=`git rev-list $(REV) -1`; \
  110. git archive --prefix=mconnect-$${gitsha}/ $(REV) | \
  111. gzip -c > mconnect-$${gitsha}.tar.gz
  112. #-------------------------------------------------------------
  113. run-gdb: gdb-script install
  114. gdb -x gdb-script
  115. .PHONY: run-gdb
  116. gdb-script: gdb-script.in
  117. sed -e 's,[@]bindir[@],${bindir},g' < $< > $@
  118. #-------------------------------------------------------------
  119. GEN_FROM_VALA = $(filter %.vala,$(mconnect_SOURCES) $(test_mconn_crypt_SOURCES))
  120. BUILT_SOURCES = \
  121. mconnect.desktop \
  122. $(GEN_FROM_VALA:.vala=.c)
  123. CLEANFILES = $(BUILT_SOURCES)