Sun, 21 Aug 2011 08:03:38 +0000
Fix compilation of perl plugin. I guess this code doesn't rebuild
correctly if the headers it uses change
| 14509 | 1 | # |
| 2 | # Makefile.mingw | |
| 3 | # | |
| 4 | # Description: Makefile for perl plugin loader plugin. | |
| 5 | # | |
| 6 | ||
|
16100
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15438
diff
changeset
|
7 | PIDGIN_TREE_TOP := ../../.. |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15438
diff
changeset
|
8 | include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak |
| 14509 | 9 | |
| 10 | ## | |
| 11 | ## TARGET DEFINITIONS | |
| 12 | ## | |
|
14638
b0fa76dac93f
[gaim-migrate @ 17300]
Daniel Atallah <datallah@pidgin.im>
parents:
14509
diff
changeset
|
13 | .PHONY: all install clean |
| 14509 | 14 | |
| 15 | all: | |
|
16100
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15438
diff
changeset
|
16 | $(MAKE) -C ./common -f $(MINGW_MAKEFILE) |
| 14509 | 17 | |
|
16100
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15438
diff
changeset
|
18 | install: all $(PIDGIN_INSTALL_PLUGINS_DIR) |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15438
diff
changeset
|
19 | $(MAKE) -C ./common -f $(MINGW_MAKEFILE) install |
| 14509 | 20 | |
| 21 | ## | |
| 22 | ## CLEAN RULES | |
| 23 | ## | |
| 24 | clean: | |
|
16100
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15438
diff
changeset
|
25 | $(MAKE) -C ./common -f $(MINGW_MAKEFILE) clean |