source: Sophya/trunk/Cosmo/SimLSS/Makeprog@ 4032

Last change on this file since 4032 was 3584, checked in by cmv, 17 years ago

chgt $EXTLIBDIR/Include -> $EXTLIBDIR/uname/include , cmv 03/03/2009

  • Property svn:executable set to *
File size: 630 bytes
Line 
1# make -f Makeprog
2include $(SOPHYABASE)/include/sophyamake.inc
3
4MACH = $(shell echo `uname`)
5LIB = ${CMVPROG}/lib/
6
7MYINC = -I${EXTLIBDIR}/${MACH}/include -I${HOME}/Sophya/SimLSS
8MYLIB = $(SOPHYAEXTSLBLIST) -L${CMVPROG}/lib -lcmvsimbao -lfftw3_threads -lfftw3 -lm
9
10#---- Les programmes utilitaires de calcul de cartes
11myprog = cmvtest
12
13#----
14
15all: $(myprog)
16
17clean:
18 rm -f $(myprog).o $(myprog)
19
20##############################################################################
21$(myprog): $(myprog).o
22 $(CXXLINK) $(CXXREP) -o $@ $(myprog).o $(MYLIB)
23$(myprog).o: $(myprog).cc
24 $(CXXCOMPILE) $(CXXREP) $(MYINC) -o $@ $(myprog).cc
25
Note: See TracBrowser for help on using the repository browser.