mirror of
https://salsa.debian.org/xorg-team/lib/pixman
synced 2025-08-28 12:43:16 +00:00

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.
26 lines
397 B
Makefile
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
|