comparison pidgin/pixmaps/emotes/Makefile.mingw @ 18657:46629aab70b1

Make sure we delete all generated files with the mingw clean make target.
author Daniel Atallah <daniel.atallah@gmail.com>
date Fri, 27 Jul 2007 15:46:03 +0000
parents ded8da3de5f8
children
comparison
equal deleted inserted replaced
18656:2848d536ac7e 18657:46629aab70b1
4 # Description: Makefile for win32 (mingw) version of Pidgin pixmaps 4 # Description: Makefile for win32 (mingw) version of Pidgin pixmaps
5 # 5 #
6 6
7 include ./Makefile.am 7 include ./Makefile.am
8 8
9 .PHONY: install 9 .PHONY: install clean
10 10
11 install: 11 install:
12 if test '$(SUBDIRS)'; then \ 12 if test '$(SUBDIRS)'; then \
13 list='$(SUBDIRS)'; for subdir in $$list; do \ 13 list='$(SUBDIRS)'; for subdir in $$list; do \
14 $(MAKE) -C $$subdir -f Makefile.mingw install || exit 1; \ 14 $(MAKE) -C $$subdir -f Makefile.mingw install || exit 1; \
15 done; \ 15 done; \
16 fi; 16 fi;
17
18 clean:
19 if test '$(SUBDIRS)'; then \
20 list='$(SUBDIRS)'; for subdir in $$list; do \
21 $(MAKE) -C $$subdir -f Makefile.mingw clean || exit 1; \
22 done; \
23 fi;