Mercurial > pidgin.yaz
changeset 4133:d3d1dac745d4
[gaim-migrate @ 4351]
winprefs plugin added
committer: Tailor Script <tailor@pidgin.im>
author | Herman Bloggs <hermanator12002@yahoo.com> |
---|---|
date | Tue, 24 Dec 2002 19:44:18 +0000 |
parents | 3b93be27b008 |
children | c0f4c664e3ba |
files | plugins/Makefile.mingw |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/Makefile.mingw Tue Dec 24 19:43:13 2002 +0000 +++ b/plugins/Makefile.mingw Tue Dec 24 19:44:18 2002 +0000 @@ -15,6 +15,7 @@ GAIM_INSTALL_DIR := $(GAIM_TOP)/win32-install-dir TICKER := ./ticker TRANSPARENCY := ./win32/transparency +WINPREFS := ./win32/winprefs ## ## VARIABLE DEFINITIONS @@ -75,11 +76,13 @@ all: plugins $(MAKE) -C $(TICKER) -f Makefile.mingw $(MAKE) -C $(TRANSPARENCY) -f Makefile.mingw + $(MAKE) -C $(WINPREFS) -f Makefile.mingw install: cp $(GAIM_PLUGINS)/*.dll $(GAIM_PLUGINS)/gaim.pl $(GAIM_INSTALL_DIR)/plugins $(MAKE) -C $(TICKER) -f Makefile.mingw install $(MAKE) -C $(TRANSPARENCY) -f Makefile.mingw install + $(MAKE) -C $(WINPREFS) -f Makefile.mingw install # # BUILD Plugin @@ -105,3 +108,4 @@ rm -rf *.dll $(MAKE) -C $(TICKER) -f Makefile.mingw clean $(MAKE) -C $(TRANSPARENCY) -f Makefile.mingw clean + $(MAKE) -C $(WINPREFS) -f Makefile.mingw clean