Changeset 17
- Timestamp:
- 01/29/08 14:13:48 (17 years ago)
- Files:
-
- 1 added
- 5 modified
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r15 r17 1 LDFLAGS=-Ldebug/usr/lib/ -litpp2 CPPFLAGS=-g1 export LDFLAGS=-Ldebug/usr/lib/ -litpp 2 export CPPFLAGS=-g 3 3 4 4 all: subsystem … … 8 8 $(MAKE) -C tests 9 9 10 test: test0 11 ./test0 10 clean: 11 cd tests && $(MAKE) clean 12 cd bdm && $(MAKE) clean -
bdm/Makefile
r15 r17 12 12 $(MAKE) -C math 13 13 14 clean: 15 cd stat && $(MAKE) clean 16 cd estim && $(MAKE) clean 17 cd design && $(MAKE) clean 18 cd math && $(MAKE) clean 19 14 20 libbdm.a: itpp_ext.o 15 21 $(AR) rvus $@ ./stat/*.o ./estim/*.o ./math/*.o itpp_ext.o -
mixpp.kdevelop
r16 r17 18 18 <run> 19 19 <directoryradio>executable</directoryradio> 20 <mainprogram>/home/smidl/work/mixpp/test Smp</mainprogram>20 <mainprogram>/home/smidl/work/mixpp/tests/testKF</mainprogram> 21 21 <programargs></programargs> 22 22 <globaldebugarguments></globaldebugarguments> … … 210 210 <kdevdocumentation> 211 211 <projectdoc> 212 <docsystem ></docsystem>213 <docurl ></docurl>214 <usermanualurl ></usermanualurl>212 <docsystem/> 213 <docurl/> 214 <usermanualurl/> 215 215 </projectdoc> 216 216 </kdevdocumentation> -
tests/Makefile
r16 r17 3 3 4 4 all: subsystem test0 testKF 5 echo $(CPPFLAGS) 5 6 6 7 subsystem: -
tests/testKF.cpp
r15 r17 20 20 int Ndat; 21 21 22 fin >> Name( "d" ) >> Dt; 22 fin.seek( "d" ); 23 fin >> Dt; 23 24 fin.seek( "A" ); 24 25 fin >> A;