Mercurial > pidgin.yaz
view gtk/pixmaps/Makefile.mingw @ 14490:f283ebe419e4
[gaim-migrate @ 17209]
More changes to help make dist work again. Let's see here
* Alphabetize some stuff in gtk/Makefile.am
* Include gntwm.h in the tar.gz
* Include gntplugin.h in the tar.gz (instead of gntplugin.c (typo))
* libgaim/connection.c and libgaim/upnp.c shouldn't include gaim.h
gaim.h should only be used by stuff outside of libgaim
* Include gaim.h in the tar.gz (not sure if we want to keep it this
way, I'll send an email to gaim-devel in a little bit)
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sat, 09 Sep 2006 21:32:30 +0000 |
parents | 841ce6b110a8 |
children | 5d03b309b482 |
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 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;