Mercurial > pidgin.yaz
changeset 17480:60188d208fec
Fix win32 emoticon makefiles.
author | Daniel Atallah <daniel.atallah@gmail.com> |
---|---|
date | Wed, 30 May 2007 14:25:20 +0000 |
parents | 694718ba8b7a |
children | deb035e6d748 |
files | pidgin/pixmaps/emotes/default/22/Makefile.mingw pidgin/pixmaps/emotes/none/Makefile.mingw |
diffstat | 2 files changed, 9 insertions(+), 16 deletions(-) [+] |
line wrap: on
line diff
--- a/pidgin/pixmaps/emotes/default/22/Makefile.mingw Wed May 30 14:00:07 2007 +0000 +++ b/pidgin/pixmaps/emotes/default/22/Makefile.mingw Wed May 30 14:25:20 2007 +0000 @@ -10,17 +10,13 @@ datadir = $(PIDGIN_INSTALL_DIR) include ./Makefile.am -theme: default.theme.in - sed -e 's/^_Name=/Name=/' \ - -e 's/^_Description=/Description=/' \ - -e 's/^_Author=/Author=/' \ - $< > $@ +.PHONY: install clean -.PHONY: install - -install: +install: theme if test '$(pidginsmileypix_DATA)'; then \ mkdir -p $(pidginsmileypixdir); \ cp $(pidginsmileypix_DATA) $(pidginsmileypixdir); \ fi; +clean: + rm -f theme
--- a/pidgin/pixmaps/emotes/none/Makefile.mingw Wed May 30 14:00:07 2007 +0000 +++ b/pidgin/pixmaps/emotes/none/Makefile.mingw Wed May 30 14:25:20 2007 +0000 @@ -10,17 +10,14 @@ datadir = $(PIDGIN_INSTALL_DIR) include ./Makefile.am -theme: none.theme.in - sed -e 's/^_Name=/Name=/' \ - -e 's/^_Description=/Description=/' \ - -e 's/^_Author=/Author=/' \ - $< > $@ +.PHONY: install clean -.PHONY: install - -install: +install: theme if test '$(pidginsmileypix_DATA)'; then \ mkdir -p $(pidginsmileypixdir); \ cp $(pidginsmileypix_DATA) $(pidginsmileypixdir); \ fi; +clean: + rm -f theme +