diff options
author | Dennis Kasprzyk <onestone@compiz-fusion.org> | 2008-10-09 22:40:57 +0200 |
---|---|---|
committer | Dennis kasprzyk <onestone@compiz-fusion.org> | 2008-10-09 22:40:57 +0200 |
commit | 085d2ef5529415ae1e310c4d6b972211555ccfce (patch) | |
tree | 0cc8fb561a6efc9f5533644c8e92ccb63b352e3c /gtk | |
parent | 0a6f047acf54246b7f573be85fd45fb803d4fa39 (diff) | |
download | zcomp-085d2ef5529415ae1e310c4d6b972211555ccfce.tar.gz zcomp-085d2ef5529415ae1e310c4d6b972211555ccfce.tar.bz2 |
Drop autoconf/make build system.
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/Makefile.am | 1 | ||||
-rw-r--r-- | gtk/gnome/Makefile.am | 82 | ||||
-rw-r--r-- | gtk/window-decorator/Makefile.am | 51 |
3 files changed, 0 insertions, 134 deletions
diff --git a/gtk/Makefile.am b/gtk/Makefile.am deleted file mode 100644 index 8360418..0000000 --- a/gtk/Makefile.am +++ /dev/null @@ -1 +0,0 @@ -SUBDIRS = window-decorator gnome diff --git a/gtk/gnome/Makefile.am b/gtk/gnome/Makefile.am deleted file mode 100644 index b9dcd86..0000000 --- a/gtk/gnome/Makefile.am +++ /dev/null @@ -1,82 +0,0 @@ -moduledir = $(DESTDIR)$(windowsettingslibdir)/window-manager-settings - -if USE_GNOME -libcompiz_la_LDFLAGS = -export-dynamic -avoid-version -rpath $(moduledir) -libcompiz_la_LIBADD = @GNOME_WINDOW_SETTINGS_LIBS@ -libcompiz_la_SOURCES = \ - compiz-window-manager.c \ - compiz-window-manager.h -libcompiz_module = libcompiz.la - -desktopfilesdir = $(DESTDIR)$(windowsettingsdatadir)/gnome/wm-properties -desktopfiles_in_files = compiz.desktop.in -desktopfiles_files = $(desktopfiles_in_files:.desktop.in=.desktop) - -@INTLTOOL_DESKTOP_RULE@ - -if USE_GNOME_KEYBINDINGS - -xmldir = $(DESTDIR)$(keybindingsdir) -xml_in_files = 50-compiz-desktop-key.xml.in 50-compiz-key.xml.in -xml_files = $(xml_in_files:.xml.in=.xml) - -@INTLTOOL_XML_NOMERGE_RULE@ - -endif - -install-exec-local: - if mkdir -p $(moduledir) && test -w $(moduledir); then ( \ - $(LIBTOOL) --mode=install $(INSTALL) $(libcompiz_module) \ - $(moduledir) \ - ); \ - fi - -install-data-local: - if mkdir -p $(desktopfilesdir) && test -w $(desktopfilesdir); then ( \ - $(INSTALL) -m 644 $(desktopfiles_files) \ - $(desktopfilesdir) \ - ); \ - fi -if USE_GNOME_KEYBINDINGS - if mkdir -p $(xmldir) && test -w $(xmldir); then ( \ - $(INSTALL) -m 644 $(xml_files) \ - $(xmldir) \ - ); \ - fi -endif - -uninstall-local: - if test -w $(moduledir); then ( \ - rm -f $(moduledir)/libcompiz.* \ - ); \ - fi - if test -w $(desktopfilesdir); then ( \ - rm -f $(desktopfilesdir)/compiz.desktop \ - ); \ - fi -if USE_GNOME_KEYBINDINGS - if test -w $(xmldir); then ( \ - rm -f $(xmldir)/50-compiz*key.xml \ - ); \ - fi -endif -endif - -INCLUDES = @GNOME_WINDOW_SETTINGS_CFLAGS@ \ - -DMETACITY_THEME_DIR=\""$(windowsettingsdatadir)/themes"\" - -noinst_LTLIBRARIES = \ - $(libcompiz_module) - -noinst_DATA = \ - $(desktopfiles_files) \ - $(xml_files) - -EXTRA_DIST = \ - $(desktopfiles_files) \ - $(desktopfiles_in_files) \ - $(xml_files) \ - $(xml_in_files) - -DISTCLEANFILES = \ - $(noinst_DATA) diff --git a/gtk/window-decorator/Makefile.am b/gtk/window-decorator/Makefile.am deleted file mode 100644 index 51ae815..0000000 --- a/gtk/window-decorator/Makefile.am +++ /dev/null @@ -1,51 +0,0 @@ -if USE_GTK - -if USE_METACITY -metacitylibs = @METACITY_LIBS@ -endif - -gtk_window_decorator_DEPENDENCIES = \ - $(top_builddir)/libdecoration/libdecoration.la -gtk_window_decorator_LDADD = \ - $(top_builddir)/libdecoration/libdecoration.la \ - @GTK_WINDOW_DECORATOR_LIBS@ \ - @GCONF_LIBS@ \ - @DBUS_GLIB_LIBS@ \ - $(metacitylibs) - -gtk_window_decorator_SOURCES = \ - gtk-window-decorator.c -gtk_window_decorator_program = gtk-window-decorator -endif - -if USE_GCONF -schemadir = $(GCONF_SCHEMA_FILE_DIR) -schema_in_files = gwd.schemas.in -schema_files = $(schema_in_files:.schemas.in=.schemas) -schema_DATA = $(schema_files) - -@INTLTOOL_SCHEMAS_RULE@ - -install-data-local: - if test -z "$(DESTDIR)" ; then \ - GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(schema_DATA); \ - fi -endif - -INCLUDES = \ - -I$(top_srcdir)/include \ - @GTK_WINDOW_DECORATOR_CFLAGS@ \ - @METACITY_CFLAGS@ \ - @GCONF_CFLAGS@ \ - @DBUS_GLIB_CFLAGS@ \ - -DALL_LINGUAS="\"@ALL_LINGUAS@\"" \ - -DLOCALEDIR="\"@datadir@/locale"\" - -bin_PROGRAMS = $(gtk_window_decorator_program) - -EXTRA_DIST = \ - $(schema_files) \ - $(schema_in_files) - -DISTCLEANFILES = \ - $(schema_files) |