pixman/Makefile.win32
Andrea Canciani 9623b478f7 build-win32: Add 'check' target
On win32 the tests are built but they are not run automatically by the
build system.

A minimal 'check' target (depending on the tests being built) can
simply run them and log to the console their success/failure.
2011-09-14 07:03:35 -07:00

26 lines
397 B
Makefile

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