diff options
author | Rodney Dawes <dobey@novell.com> | 2005-05-01 19:26:24 +0000 |
---|---|---|
committer | Rodney Dawes <dobey@novell.com> | 2005-05-01 19:26:24 +0000 |
commit | 5d557c39a307b5a727919c527f14c535d5922df0 (patch) | |
tree | 28ea6254d9d8edb45b38ce4f48e8203b364c37b9 /icons/Makefile.am | |
parent | ba1adfb47b04e6f551ea3d221b532b201bbaaac3 (diff) | |
download | clientdata-5d557c39a307b5a727919c527f14c535d5922df0.tar.gz clientdata-5d557c39a307b5a727919c527f14c535d5922df0.tar.bz2 clientdata-5d557c39a307b5a727919c527f14c535d5922df0.tar.xz clientdata-5d557c39a307b5a727919c527f14c535d5922df0.zip |
- Added installation of game data, install required on *nix systems
- Updated desktop file to work better
- Install the desktop file to the standard location
- Install the icon as tmw.png in the standard pixmaps data dir
Diffstat (limited to 'icons/Makefile.am')
-rw-r--r-- | icons/Makefile.am | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/icons/Makefile.am b/icons/Makefile.am new file mode 100644 index 00000000..26dcd623 --- /dev/null +++ b/icons/Makefile.am @@ -0,0 +1,17 @@ + +iconsdir = $(pkgdatadir)/data/icons + +icons_DATA = \ + tmw-icon.ico \ + tmw-icon.png \ + tmw-icon.xpm + +install-data-local: + $(mkinstalldirs) $(DESTDIR)$(datadir)/pixmaps + $(INSTALL) $(srcdir)/tmw-icon.png $(DESTDIR)$(datadir)/pixmaps/tmw.png + +uninstall-local: + rm -f $(DESTDIR)$(datadir)/pixmaps/tmw.png + +EXTRA_DIST = \ + $(icons_DATA) |