diff options
author | David Reveman <davidr@novell.com> | 2006-09-26 10:03:25 -0400 |
---|---|---|
committer | David Reveman <davidr@novell.com> | 2006-09-26 10:03:25 -0400 |
commit | 7e03f6fef42d15a7fdd7dd1aa5b7d1026d00d153 (patch) | |
tree | 42c3ee85c2883c0962cc8bd39a6f175866589f1a | |
parent | 1767bdb56bffe53b18521c143a1a5c2234366a69 (diff) |
Add missing Makefile.am.
-rw-r--r-- | gtk/gnome/Makefile.am | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gtk/gnome/Makefile.am b/gtk/gnome/Makefile.am new file mode 100644 index 00000000..dea7a639 --- /dev/null +++ b/gtk/gnome/Makefile.am @@ -0,0 +1,21 @@ +if USE_GNOME +libcompiz_la_LDFLAGS = -export-dynamic -avoid-version +libcompiz_la_LIBADD = @GNOME_WINDOW_SETTINGS_LIBS@ +libcompiz_la_SOURCES = \ + compiz-window-manager.c \ + compiz-window-manager.h +libcompiz_module = libcompiz.la + +desktopfilesdir = $(windowsettingsdatadir)/gnome/wm-properties +desktopfiles_in_files = compiz.desktop.in +desktopfiles_files = $(desktopfiles_in_files:.desktop.in=.desktop) +desktopfiles_DATA = $(desktopfiles_files) +endif + +INCLUDES = @GNOME_WINDOW_SETTINGS_CFLAGS@ \ + -DMETACITY_THEME_DIR=\""$(windowsettingsdatadir)/themes"\" + +moduledir = $(windowsettingslibdir)/window-manager-settings + +module_LTLIBRARIES = \ + $(libcompiz_module) |