Changeset 17

Show
Ignore:
Timestamp:
01/29/08 14:13:48 (16 years ago)
Author:
smidl
Message:

drobne zmeny v Makefile a pridani testKF.it

Files:
1 added
5 modified

Legend:

Unmodified
Added
Removed
  • Makefile

    r15 r17  
    1 LDFLAGS=-Ldebug/usr/lib/ -litpp  
    2 CPPFLAGS=-g 
     1export LDFLAGS=-Ldebug/usr/lib/ -litpp  
     2export CPPFLAGS=-g 
    33 
    44all: subsystem 
     
    88        $(MAKE) -C tests 
    99 
    10 test: test0 
    11         ./test0 
     10clean: 
     11        cd tests && $(MAKE) clean 
     12        cd bdm && $(MAKE) clean 
  • bdm/Makefile

    r15 r17  
    1212        $(MAKE) -C math 
    1313 
     14clean: 
     15        cd stat && $(MAKE) clean 
     16        cd estim && $(MAKE) clean 
     17        cd design && $(MAKE) clean 
     18        cd math && $(MAKE) clean 
     19 
    1420libbdm.a: itpp_ext.o 
    1521        $(AR) rvus $@ ./stat/*.o ./estim/*.o  ./math/*.o itpp_ext.o 
  • mixpp.kdevelop

    r16 r17  
    1818    <run> 
    1919      <directoryradio>executable</directoryradio> 
    20       <mainprogram>/home/smidl/work/mixpp/testSmp</mainprogram> 
     20      <mainprogram>/home/smidl/work/mixpp/tests/testKF</mainprogram> 
    2121      <programargs></programargs> 
    2222      <globaldebugarguments></globaldebugarguments> 
     
    210210  <kdevdocumentation> 
    211211    <projectdoc> 
    212       <docsystem></docsystem> 
    213       <docurl></docurl> 
    214       <usermanualurl></usermanualurl> 
     212      <docsystem/> 
     213      <docurl/> 
     214      <usermanualurl/> 
    215215    </projectdoc> 
    216216  </kdevdocumentation> 
  • tests/Makefile

    r16 r17  
    33 
    44all: subsystem test0 testKF 
     5        echo $(CPPFLAGS) 
    56 
    67subsystem: 
  • tests/testKF.cpp

    r15 r17  
    2020        int Ndat; 
    2121 
    22         fin >> Name( "d" ) >> Dt; 
     22        fin.seek( "d" ); 
     23        fin >> Dt; 
    2324        fin.seek( "A" );  
    2425        fin >> A;