1# Copyright (C) 2012 The SBCELT Developers. All rights reserved.
2# Use of this source code is governed by a BSD-style license
3# that can be found in the LICENSE-file.
4
5include Make.conf
6
7.PHONY: default
8default:
9	$(MAKE) -C lib
10	$(MAKE) -C helper
11	$(MAKE) -C bench-celt
12	$(MAKE) -C bench-sbcelt
13
14.PHONY: clean
15clean:
16	$(MAKE) -C lib clean
17	$(MAKE) -C helper clean
18	$(MAKE) -C bench-celt clean
19	$(MAKE) -C bench-sbcelt clean
20	@cd test && ./clean.bash
21
22.PHONY: test
23test:
24	@cd test && ./run.bash
25
26