aboutsummaryrefslogtreecommitdiff
path: root/tests/schema/enumeration/makefile
blob: d9581783667865859c039ff3d54823502cd48196 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# file      : tests/schema/enumeration/makefile
# author    : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2006-2010 Code Synthesis Tools CC
# license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

include $(dir $(lastword $(MAKEFILE_LIST)))../../../build/bootstrap.make

tests := 000

driver := $(out_root)/tests/dump/driver
test   := $(out_base)/.test
clean  := $(out_base)/.clean

# Convenience alias for default target.
#
$(out_base)/: $(driver)

# Test.
#
test_targets := $(addprefix $(out_base)/.test-,$(tests))

$(test): $(test_targets)
$(test_targets): driver := $(driver)

.PHONY: $(out_base)/.test-%
$(out_base)/.test-%: $(driver) $(src_base)/test-%.xsd $(src_base)/test-%.std
	$(call message,test $(out_base)/$*,$(driver) --enum-synthesis $(src_base)/test-$*.xsd | diff -u $(src_base)/test-$*.std -)

# Clean.
#
$(clean):

# Dependencies.
#
$(call import,$(src_root)/tests/dump/makefile)