root/bdm/Makefile
@
17
Revision 17, 337 bytes (checked in by smidl, 17 years ago) |
---|
Line | |
---|---|
1 | CPPFLAGS = -g |
2 | |
3 | |
4 | export CPPFLAGS |
5 | |
6 | all: subsystem libbdm.a |
7 | |
8 | subsystem: |
9 | $(MAKE) -C stat |
10 | $(MAKE) -C estim |
11 | $(MAKE) -C design |
12 | $(MAKE) -C math |
13 | |
14 | clean: |
15 | cd stat && $(MAKE) clean |
16 | cd estim && $(MAKE) clean |
17 | cd design && $(MAKE) clean |
18 | cd math && $(MAKE) clean |
19 | |
20 | libbdm.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.