~ubuntu-branches/ubuntu/quantal/pixman/quantal-proposed

« back to all changes in this revision

Viewing changes to Makefile.win32

  • Committer: Package Import Robot
  • Author(s): Maarten Lankhorst
  • Date: 2013-12-10 13:26:08 UTC
  • mfrom: (30.1.4 saucy-security)
  • Revision ID: package-import@ubuntu.com-20131210132608-8dfmczm1fjrm99jh
Tags: 0.30.2-1ubuntu0.0.0.1
Copy saucy package back to quantal. (LP: #1253041)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
top_srcdir = .
4
4
include $(top_srcdir)/Makefile.win32.common
5
5
 
6
 
# Recursive targets
7
 
pixman_r:
 
6
all: pixman test
 
7
 
 
8
pixman:
8
9
        @$(MAKE) -C pixman -f Makefile.win32
9
10
 
10
 
test_r:
 
11
test:
11
12
        @$(MAKE) -C test -f Makefile.win32
12
13
 
13
14
clean_r:
14
15
        @$(MAKE) -C pixman -f Makefile.win32 clean
15
16
        @$(MAKE) -C test   -f Makefile.win32 clean
16
17
 
17
 
check_r:
 
18
check:
18
19
        @$(MAKE) -C test -f Makefile.win32 check
19
20
 
20
 
# Base targets
21
 
all: test_r
22
21
 
23
22
clean: clean_r
24
23
 
25
 
check: check_r
 
24
 
 
25
.PHONY: all pixman test clean check