Jan Breuer
2021-11-09 77670c40de606acfedfe0ec3d37706ec87dc27a0
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