Mercurial > pidgin
view gtk/pixmaps/Makefile.mingw @ 14733:4972fc6bc3bd
[gaim-migrate @ 17489]
(16:26:26) elb: LSchiere: for file in *.po; do sed -e 's/context context cancal context/context context cancel context/' < $file > $file.new; mv $file.new $file; done
(16:27:07) LSchiere2: elb rocks
Turned out it wasn't that many files, but elb still rocks.
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Mon, 16 Oct 2006 20:29:48 +0000 |
parents | 5d03b309b482 |
children |
line wrap: on
line source
# # Makefile.mingw # # Description: Makefile for win32 (mingw) version of Gaim pixmaps # GAIM_TOP := ../.. include $(GAIM_TOP)/libgaim/win32/global.mak datadir := $(GAIM_INSTALL_DIR) include ./Makefile.am .PHONY: install install: if test '$(SUBDIRS)'; then \ list='$(SUBDIRS)'; for subdir in $$list; do \ $(MAKE) -C $$subdir -f $(GAIM_WIN32_MAKEFILE) install; \ done; \ fi; if test '$(gaimbuttonpix_DATA)'; then \ mkdir -p $(gaimbuttonpixdir); \ cp $(gaimbuttonpix_DATA) $(gaimbuttonpixdir); \ fi; if test '$(gaimdialogpix_DATA)'; then \ mkdir -p $(gaimdialogpixdir); \ cp $(gaimdialogpix_DATA) $(gaimdialogpixdir); \ fi; if test '$(gaimiconpix_DATA)'; then \ mkdir -p $(gaimiconpixdir); \ cp $(gaimiconpix_DATA) $(gaimiconpixdir); \ fi; if test '$(gaimdistpix_DATA)'; then \ mkdir -p $(gaimdistpixdir); \ cp $(gaimdistpix_DATA) $(gaimdistpixdir); \ fi; if test '$(distpixmap_DATA)'; then \ mkdir -p $(distpixmapdir); \ cp $(distpixmap_DATA) $(distpixmapdir); \ fi;