Jan Breuer
2023-01-16 a6b4eb9e36ea571b5ece992dc6304e2c876c0c9f
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