Mercurial > pidgin
view pixmaps/Makefile.mingw @ 4947:24c9a23df63b
[gaim-migrate @ 5281]
You'd think faceprint would have learned the dangers of static variables after
playing with normalize() ;)
This fixes scaling. The problem was that the size of the widget was being
stored in a static variable. Of course, there's more than one gtkimhtml, so
this managed to screw things up a bit.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Tue, 01 Apr 2003 08:43:51 +0000 |
parents | 5f0385678315 |
children | bc494c4a3991 |
line wrap: on
line source
# # Makefile.mingw # # Description: Makefile for win32 (mingw) version of Gaim pixmaps # datadir = ../win32-install-dir include ./Makefile.am install: if test '$(SUBDIRS)'; then \ list='$(SUBDIRS)'; for subdir in $$list; do \ $(MAKE) -C $$subdir -f Makefile.mingw 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 '$(gaimmenupix_DATA)'; then \ mkdir -p $(gaimmenupixdir); \ cp $(gaimmenupix_DATA) $(gaimmenupixdir); \ 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;