jordan imbert
2020-12-17 311a22c7a7e5518e06b0efb2ec6eb5aec453aaf2
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