Jan Breuer
2015-09-10 f65ded7a5945cdaf245502c6fa4cdd96fc9a8a53
1
2
3
4
5
6
7
8
9
10
11
12
.PHONY: clean all test
 
all:
    $(MAKE) -C libscpi
    $(MAKE) -C examples
 
clean:
    $(MAKE) clean -C libscpi
    $(MAKE) clean -C examples
 
test:
    $(MAKE) test -C libscpi