include $(top_srcdir)/Makefile.decls all: Makefile all-tests if WITH_GSSDP GSSDP_TESTS = test-publisher test-browser endif if WITH_GUPNP GUPNP_TESTS = server-test proxy-test browsing-test introspection-test endif if WITH_GUPNP_AV GUPNP_AV_TESTS = search-criteria-test endif all-tests: $(GSSDP_TESTS) $(GUPNP_TESTS) $(GUPNP_AV_TESTS) test-publisher: test-publisher.vala $(QUIET_VALAC)$(VALAC) \ --quiet \ --vapidir=$(top_srcdir) \ --vapidir=@VAPIDIR@ \ --pkg=gssdp-1.0 \ -o $(@F) $< test-browser: test-browser.vala $(QUIET_VALAC)$(VALAC) \ --quiet \ --vapidir=$(top_srcdir) \ --vapidir=@VAPIDIR@ \ --pkg=gssdp-1.0 \ -o $(@F) $< server-test: server-test.vala $(QUIET_VALAC)$(VALAC) \ --quiet \ --vapidir=$(top_srcdir) \ --vapidir=@VAPIDIR@ \ --pkg=gupnp-1.0 \ -o $(@F) $< proxy-test: proxy-test.vala $(QUIET_VALAC)$(VALAC) \ --quiet \ --vapidir=$(top_srcdir) \ --vapidir=@VAPIDIR@ \ --pkg=gupnp-1.0 \ -o $(@F) $< browsing-test: browsing-test.vala $(QUIET_VALAC)$(VALAC) \ --quiet \ --vapidir=$(top_srcdir) \ --vapidir=@VAPIDIR@ \ --pkg=gupnp-1.0 \ -o $(@F) $< introspection-test: introspection-test.vala $(QUIET_VALAC)$(VALAC) \ --quiet \ --vapidir=$(top_srcdir) \ --vapidir=@VAPIDIR@ \ --pkg=gupnp-1.0 \ -o $(@F) $< search-criteria-test: search-criteria-test.vala $(QUIET_VALAC)$(VALAC) \ --quiet \ --vapidir=$(top_srcdir) \ --vapidir=@VAPIDIR@ \ --pkg=gupnp-av-1.0 \ -o $(@F) $< CLEANFILES = \ test-publisher \ test-browser \ server-test \ proxy-test \ browsing-test \ introspection-test \ search-criteria-test EXTRA_DIST = \ test-publisher.vala \ test-browser.vala \ server-test.vala \ proxy-test.vala \ browsing-test.vala \ introspection-test.vala \ search-criteria-test.vala