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