cairo/Makefile.win32
Andrea Canciani 6a90b407aa build: Make 'all' the default target in the base Makefile.win32 build
Having the 'inform' target as default is misleading.
2012-02-18 08:55:59 +01:00

24 lines
512 B
Text

default: all
# Do not edit this file.
# Edit build/Makefile.win32.common for customization
top_srcdir = .
include $(top_srcdir)/build/Makefile.win32.inform
all: cairo
cairo: inform
@$(MAKE) -C src -f Makefile.win32
perf: inform
@$(MAKE) -C perf -f Makefile.win32 perf
test: inform
@$(MAKE) -C test -f Makefile.win32 test
clean:
@$(MAKE) -C boilerplate -f Makefile.win32 clean
@$(MAKE) -C perf -f Makefile.win32 clean
@$(MAKE) -C src -f Makefile.win32 clean
@$(MAKE) -C test -f Makefile.win32 clean