summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorVictor Toso <me@victortoso.com>2018-07-29 14:57:19 +0200
committerVictor Toso <me@victortoso.com>2018-07-30 14:20:45 +0200
commitff36ce1bbda4f71578a3fc003684ac9b2914d639 (patch)
treeb47b66cc02108907e7c6d7efdc757d15a55f35c0 /tools
parent6f7cf1e9d1689e3c066a0e8faf05fa0c4896d101 (diff)
downloadgrilo-ff36ce1bbda4f71578a3fc003684ac9b2914d639.tar.gz
build: Remove autotools support
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile.am16
-rw-r--r--tools/grilo-inspect/Makefile.am35
-rw-r--r--tools/grilo-launch/Makefile.am24
-rw-r--r--tools/grilo-test-ui/Makefile.am41
4 files changed, 0 insertions, 116 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am
deleted file mode 100644
index 575d7c2..0000000
--- a/tools/Makefile.am
+++ /dev/null
@@ -1,16 +0,0 @@
-#
-# Makefile.am
-#
-# Author: Iago Toral Quiroga <itoral@igalia.com>
-#
-# Copyright (C) 2010 Igalia S.L. All rights reserved.
-
-SUBDIRS = grilo-inspect grilo-launch
-
-if BUILD_GRILO_TEST_UI
-SUBDIRS += grilo-test-ui
-endif
-
-DIST_SUBDIRS = grilo-test-ui grilo-inspect grilo-launch
-
--include $(top_srcdir)/git.mk
diff --git a/tools/grilo-inspect/Makefile.am b/tools/grilo-inspect/Makefile.am
deleted file mode 100644
index 17e51ca..0000000
--- a/tools/grilo-inspect/Makefile.am
+++ /dev/null
@@ -1,35 +0,0 @@
-#
-# Makefile.am
-#
-# Author: Juan A. Suarez Romero <jasuarez@igalia.com>
-#
-# Copyright (C) 2010 Igalia S.L.
-
-BUILT_SOURCES = grl-core-keys.h
-
-grl-inspect.c: grl-core-keys.h
-
-grl-core-keys.h: $(top_builddir)/src/grl-metadata-key.h
- $(AWK) 'BEGIN { printf "gchar *grl_core_keys[] = {\n" } { if ( $$2 ~ /^GRL_METADATA_KEY_/ && $$2 !~ /_GET_/ ) printf "\""$$2"\",\n" } END { printf "};\n" }' $< > $@
-
-bin_PROGRAMS = \
- grl-inspect-@GRL_MAJORMINOR@
-
-grl_inspect_@GRL_MAJORMINOR@_SOURCES = \
- grl-inspect.c \
- grl-core-keys.h
-
-grl_inspect_@GRL_MAJORMINOR@_CFLAGS = \
- $(DEPS_CFLAGS) \
- -DPREFIX=$(prefix) \
- -I$(top_srcdir)/src \
- -I$(top_srcdir)/src/data
-
-grl_inspect_@GRL_MAJORMINOR@_LDADD = \
- $(DEPS_LIBS) \
- $(GTK_LIBS) \
- $(top_builddir)/src/lib@GRL_NAME@.la
-
-noinst_HEADERS = grl-core-keys.h
-
--include $(top_srcdir)/git.mk
diff --git a/tools/grilo-launch/Makefile.am b/tools/grilo-launch/Makefile.am
deleted file mode 100644
index 1792e8a..0000000
--- a/tools/grilo-launch/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-#
-# Makefile.am
-#
-# Author: Juan A. Suarez Romero <jasuarez@igalia.com>
-#
-# Copyright (C) 2014 Igalia S.L.
-
-bin_PROGRAMS = \
- grl-launch-@GRL_MAJORMINOR@
-
-grl_launch_@GRL_MAJORMINOR@_SOURCES = \
- grl-launch.c
-
-grl_launch_@GRL_MAJORMINOR@_CFLAGS = \
- $(DEPS_CFLAGS) \
- -DPREFIX=$(prefix) \
- -I$(top_srcdir)/src \
- -I$(top_srcdir)/src/data
-
-grl_launch_@GRL_MAJORMINOR@_LDADD = \
- $(DEPS_LIBS) \
- $(top_builddir)/src/lib@GRL_NAME@.la
-
--include $(top_srcdir)/git.mk
diff --git a/tools/grilo-test-ui/Makefile.am b/tools/grilo-test-ui/Makefile.am
deleted file mode 100644
index a849af6..0000000
--- a/tools/grilo-test-ui/Makefile.am
+++ /dev/null
@@ -1,41 +0,0 @@
-#
-# Makefile.am
-#
-# Author: Iago Toral <itoral@igalia.com>
-#
-# Copyright (C) 2010 Igalia S.L.
-
-bin_PROGRAMS = grilo-test-ui-@GRL_MAJORMINOR@
-
-grilo_test_ui_@GRL_MAJORMINOR@_SOURCES = \
- main.c
-
-grilo_test_ui_@GRL_MAJORMINOR@_CFLAGS = \
- $(DEPS_CFLAGS) \
- $(GTU_CFLAGS) \
- $(GRL_FLICKR_CFLAGS) \
- -DPREFIX=$(prefix) \
- -I$(top_srcdir)/src \
- -I$(top_srcdir)/src/data
-
-grilo_test_ui_@GRL_MAJORMINOR@_LDADD = \
- $(DEPS_LIBS) \
- $(GTU_LIBS) \
- $(GRL_FLICKR_LIBS) \
- $(top_builddir)/src/lib@GRL_NAME@.la
-
-if HAVE_OAUTH
-
-grilo_test_ui_@GRL_MAJORMINOR@_SOURCES += \
- flickr-oauth.h \
- flickr-oauth.c
-
-grilo_test_ui_@GRL_MAJORMINOR@_CFLAGS += \
- $(OAUTH_CFLAGS)
-
-grilo_test_ui_@GRL_MAJORMINOR@_LDADD += \
- $(OAUTH_LIBS)
-
-endif
-
--include $(top_srcdir)/git.mk