Last change
on this file since 3353 was 3346, checked in by cmv, 18 years ago |
makefile pour users programs SimLSS cmv 10/10/2007
|
-
Property svn:executable
set to
*
|
File size:
593 bytes
|
Rev | Line | |
---|
[3346] | 1 | # make -f Makeprog
|
---|
| 2 | include $(SOPHYABASE)/include/sophyamake.inc
|
---|
| 3 |
|
---|
| 4 | LIB = ${CMVPROG}/lib/
|
---|
| 5 |
|
---|
| 6 | MYINC = -I${EXTLIBDIR}/Include -I${HOME}/Sophya/SimLSS
|
---|
| 7 | MYLIB = $(SOPHYAEXTSLBLIST) -L${CMVPROG}/lib -lcmvsimbao -lfftw3_threads -lfftw3 -lm
|
---|
| 8 |
|
---|
| 9 | #---- Les programmes utilitaires de calcul de cartes
|
---|
| 10 | myprog = cmvtest
|
---|
| 11 |
|
---|
| 12 | #----
|
---|
| 13 |
|
---|
| 14 | all: $(myprog)
|
---|
| 15 |
|
---|
| 16 | clean:
|
---|
| 17 | rm -f $(myprog).o $(myprog)
|
---|
| 18 |
|
---|
| 19 | ##############################################################################
|
---|
| 20 | $(myprog): $(myprog).o
|
---|
| 21 | $(CXXLINK) $(CXXREP) -o $@ $(myprog).o $(MYLIB)
|
---|
| 22 | $(myprog).o: $(myprog).cc
|
---|
| 23 | $(CXXCOMPILE) $(CXXREP) $(MYINC) -o $@ $(myprog).cc
|
---|
| 24 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.