~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to pixman/Makefile.win32

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

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