Skip to content
Snippets Groups Projects
Commit d46a9f3a authored by Andrea Canciani's avatar Andrea Canciani
Browse files

build-win32: Add root Makefile.win32

Add Makefile.win32 to the pixman root. This makefile can recursively
run the other ones to compile the library or the test suite.
parent a76b78c2
No related branches found
No related tags found
No related merge requests found
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
# Base targets
all: test_r
clean: clean_r
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment