Fix the preprocessor compiling bug in interpretor/Makefile.
[Faustine.git] / interpretor / preprocessor / faust-0.9.47mr3 / architecture / osclib / Makefile
1 ###############################################################
2 #
3 # Build liboscpack.a and libOSCFaust.a the 2
4 # static libraries needed to provide support
5 # for Open Sound Control in Faust generated
6 # applications.
7 #
8 ###############################################################
9
10 .PHONY: all clean depend
11
12
13 all : liboscpack.a libOSCFaust.a
14
15
16 liboscpack.a : oscpack/liboscpack.a
17 cp oscpack/liboscpack.a $@
18
19 libOSCFaust.a : faust/libOSCFaust.a
20 cp faust/libOSCFaust.a $@
21
22
23 oscpack/liboscpack.a:
24 make -C oscpack
25
26 faust/libOSCFaust.a:
27 make -C faust
28
29
30 clean :
31 rm -f liboscpack.a
32 rm -f libOSCFaust.a
33 make -C oscpack clean
34 make -C faust clean
35
36 depend :
37 make -C oscpack depend
38 make -C faust depend
39