aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert Tari <robert@tari.in>2021-03-04 22:50:20 +0100
committerRobert Tari <robert@tari.in>2021-05-06 23:08:52 +0200
commit10b786c8db66751264973a8cad57efcb9cab7cea (patch)
treef84d134a2e82dea4641e28a5dc2cb9b05dfde051 /src
parent5f5d6d713e353488085ad2bd5eeaa07881e3fdc9 (diff)
downloadayatana-indicator-application-10b786c8db66751264973a8cad57efcb9cab7cea.tar.gz
ayatana-indicator-application-10b786c8db66751264973a8cad57efcb9cab7cea.tar.bz2
ayatana-indicator-application-10b786c8db66751264973a8cad57efcb9cab7cea.zip
Remove Automake files
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am113
1 files changed, 0 insertions, 113 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
deleted file mode 100644
index 916b745..0000000
--- a/src/Makefile.am
+++ /dev/null
@@ -1,113 +0,0 @@
-CLEANFILES =
-DISTCLEANFILES =
-BUILT_SOURCES =
-EXTRA_DIST =
-
-include $(top_srcdir)/Makefile.am.marshal
-
-##################################
-# Indicator
-##################################
-
-applicationlibdir = $(INDICATORDIR)
-applicationlib_LTLIBRARIES = libayatana-application.la
-libayatana_application_la_SOURCES = \
- ayatana-application-service-marshal.c \
- dbus-shared.h \
- indicator-application.c
-libayatana_application_la_CFLAGS = $(INDICATOR_CFLAGS) \
- $(COVERAGE_CFLAGS) \
- -Wall \
- -Wl,-Bsymbolic-functions \
- -Wl,-z,defs \
- -Wl,--as-needed \
- -Wno-error=deprecated-declarations \
- -DG_LOG_DOMAIN=\"Ayatana-Indicator-Application\"
-libayatana_application_la_LIBADD = $(INDICATOR_LIBS)
-libayatana_application_la_LDFLAGS = $(COVERAGE_LDFLAGS) \
- -module -avoid-version
-
-##################################
-# Service
-##################################
-
-pkglibexec_PROGRAMS = ayatana-indicator-application-service
-
-BUILT_SOURCES += \
- ayatana-application-service-marshal.h \
- ayatana-application-service-marshal.c \
- ayatana-notification-watcher-server.h
-
-ayatana_indicator_application_service_SOURCES = \
- application-service.c \
- application-service-appstore.h \
- application-service-appstore.c \
- ayatana-application-service-marshal.c \
- application-service-watcher.h \
- application-service-watcher.c \
- gen-ayatana-application-service.xml.c \
- dbus-shared.h \
- generate-id.h \
- generate-id.c
-
-ayatana_indicator_application_service_CFLAGS = \
- $(INDICATOR_CFLAGS) \
- $(APPINDICATOR_CFLAGS) \
- $(COVERAGE_CFLAGS) \
- -DDATADIR="\"$(pkgdatadir)\"" \
- -Wall -Wno-error=deprecated-declarations \
- -DG_LOG_DOMAIN=\"ayatana-indicator-application-service\"
-
-ayatana_indicator_application_service_LDADD = \
- $(INDICATOR_LIBS) \
- $(APPINDICATOR_LIBS)
-
-ayatana_indicator_application_service_LDFLAGS = \
- $(COVERAGE_LDFLAGS)
-
-glib_marshal_list = ayatana-application-service-marshal.list
-glib_marshal_prefix = _ayatana_application_service_marshal
-
-##################################
-# DBus Specs
-##################################
-
-GDBUS_SPECS = \
- ayatana-application-service.xml
-
-DBUS_SPECS = \
- ayatana-notification-watcher.xml
-
-%-client.h: %.xml
- dbus-binding-tool \
- --prefix=_$(notdir $(subst -,_,$(<:.xml=)))_client \
- --mode=glib-client \
- --output=$@ \
- $<
-
-%-server.h: %.xml
- dbus-binding-tool \
- --prefix=_$(notdir $(subst -,_,$(<:.xml=)))_server \
- --mode=glib-server \
- --output=$@ \
- $<
-
-gen-%.xml.c: %.xml
- @echo "Building $@ from $<"
- @echo "const char * _$(notdir $(subst -,_,$(subst .,_,$(basename $<)))) = " > $@
- @sed -e "s:\":\\\\\":g" -e s:^:\": -e s:\$$:\\\\n\": $< >> $@
- @echo ";" >> $@
-
-gen-%.xml.h: %.xml
- @echo "Building $@ from $<"
- @echo "extern const char * _$(notdir $(subst -,_,$(subst .,_,$(basename $<))));" > $@
-
-BUILT_SOURCES += \
- $(DBUS_SPECS:.xml=-client.h) \
- $(DBUS_SPECS:.xml=-server.h) \
- gen-ayatana-application-service.xml.c \
- gen-ayatana-application-service.xml.h
-
-CLEANFILES += $(BUILT_SOURCES)
-
-EXTRA_DIST += $(DBUS_SPECS) $(GDBUS_SPECS)