root/bdm/Makefile @ 17

Revision 17, 337 bytes (checked in by smidl, 17 years ago)

drobne zmeny v Makefile a pridani testKF.it

Line 
1CPPFLAGS = -g
2
3
4export CPPFLAGS
5
6all: subsystem libbdm.a
7
8subsystem:
9        $(MAKE) -C stat
10        $(MAKE) -C estim
11        $(MAKE) -C design
12        $(MAKE) -C math
13
14clean:
15        cd stat && $(MAKE) clean
16        cd estim && $(MAKE) clean
17        cd design && $(MAKE) clean
18        cd math && $(MAKE) clean
19
20libbdm.a: itpp_ext.o
21        $(AR) rvus $@ ./stat/*.o ./estim/*.o  ./math/*.o itpp_ext.o
Note: See TracBrowser for help on using the browser.