summaryrefslogtreecommitdiff
path: root/Makefile.win32
blob: 91cd12a52e5ce7e040dc90d09f7bd4541b1e5805 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
default: all

top_srcdir = .
include $(top_srcdir)/Makefile.win32.common

# Recursive targets
pixman_r:
	@$(MAKE) -C pixman -f Makefile.win32

test_r:
	@$(MAKE) -C test -f Makefile.win32

clean_r:
	@$(MAKE) -C pixman -f Makefile.win32 clean
	@$(MAKE) -C test   -f Makefile.win32 clean

check_r:
	@$(MAKE) -C test -f Makefile.win32 check

# Base targets
all: test_r

clean: clean_r

check: check_r