Skip to content
Snippets Groups Projects
Makefile.win32 384 B
Newer Older
default: all

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

all: pixman test

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

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

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

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


.PHONY: all pixman test clean check