~ubuntu-branches/ubuntu/raring/voxbo/raring

« back to all changes in this revision

Viewing changes to getput/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Michael Hanke
  • Date: 2010-06-06 11:33:11 UTC
  • Revision ID: james.westby@ubuntu.com-20100606113311-v3c13imdkkd5n7ae
Tags: upstream-1.8.5~svn1172
ImportĀ upstreamĀ versionĀ 1.8.5~svn1172

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
# Makefile for getput i/o code
 
3
# original version by Zack Smith
 
4
 
 
5
-include ../make_vars.txt
 
6
include ../make_stuff.txt
 
7
 
 
8
all:    getdata putdata
 
9
 
 
10
getdata:        getdata.cpp time_series_avg.cpp  $(VBLIBS)
 
11
        ${CXX} -I../stand_alone ${CXXFLAGS}  -Wall getdata.cpp time_series_avg.cpp $(LDFLAGS) -lvbio -lvbutil -lvbglm -lgsl -lgslcblas $(DLLIB) -o getdata
 
12
 
 
13
putdata:        putdata.cpp $(VBLIBS)
 
14
        ${CXX} ${CXXFLAGS}  -Wall putdata.cpp $(LDFLAGS) -lvbio -lvbutil -lvbglm -lgsl -lgslcblas $(DLLIB) -o putdata
 
15
 
 
16
clean:  
 
17
        rm -f /tmp/fifo getdata putdata *~ *.o *.exe
 
18
 
 
19
install:
 
20
        cp -f getdata putdata $(VB_BINDIR)