summaryrefslogtreecommitdiff
path: root/Makefile.win32
diff options
context:
space:
mode:
authorAndrea Canciani <ranma42@gmail.com>2012-02-16 19:21:47 +0100
committerAndrea Canciani <ranma42@gmail.com>2012-02-16 23:00:46 +0100
commited803a193585544d2c4a290e95700cf9b68d0f10 (patch)
treedb42d04434c8c273f74ef28d4e8cdca22ca9b921 /Makefile.win32
parentc60627e8af240189a16d7118230bf6df6d300f21 (diff)
build: Add 'clean' target to Makefile.win32 build system
The Makefile.win32 in the subdirectories provide a working 'clean' target (defined in Makefile.win32.common), the central Makefile.win32 'clean' target does not do anything. Replace the noop 'clean' target with one that cleans all the subdirs.
Diffstat (limited to 'Makefile.win32')
-rw-r--r--Makefile.win328
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.win32 b/Makefile.win32
index f475246c..e5a2c465 100644
--- a/Makefile.win32
+++ b/Makefile.win32
@@ -2,7 +2,7 @@
# Edit build/Makefile.win32.common for customization
top_srcdir = .
-include $(top_srcdir)/build/Makefile.win32.common
+include $(top_srcdir)/build/Makefile.win32.inform
all: cairo
@@ -14,3 +14,9 @@ perf: inform
test: inform
@$(MAKE) -C test -f Makefile.win32 test
+
+clean:
+ @$(MAKE) -C boilerplate -f Makefile.win32 clean
+ @$(MAKE) -C perf -f Makefile.win32 clean
+ @$(MAKE) -C src -f Makefile.win32 clean
+ @$(MAKE) -C test -f Makefile.win32 clean