summaryrefslogtreecommitdiff
path: root/bindings/Makefile
blob: 67c3f256507b104fb3999c8915b698b2e7006739 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Makefile for libdom
#
# Toolchain is exported by top-level makefile
#
# Top-level makefile also exports the following variables:
#
# COMPONENT  Name of component
# EXPORT     Absolute path of export directory
# TOP        Absolute path of source tree root
#
# The top-level makefile requires the following targets to exist:
#
# clean      Clean source tree
# debug      Create a debug binary
# distclean  Fully clean source tree, back to pristine condition
# export     Export distributable components to ${EXPORT}
# release    Create a release binary
# setup      Perform any setup required prior to compilation
# test       Execute any test cases

.PHONY: clean debug distclean export release setup test

# Targets
release:
	@${MAKE} -C xml release
	@${MAKE} -C hubbub release

debug: 
	@${MAKE} -C xml debug
	@${MAKE} -C hubbub debug

clean:
	@${MAKE} -C xml clean
	@${MAKE} -C hubbub clean
	
distclean:
	@${MAKE} -C xml distclean
	@${MAKE} -C hubbub distclean

setup:
	@${MAKE} -C xml setup
	@${MAKE} -C hubbub setup

export:
	@${MAKE} -C xml export
	@${MAKE} -C hubbub export

test:
	@${MAKE} -C xml test
	@${MAKE} -C hubbub test