source: trunk/optimizer/src/pgapack/gekco/pgapack/examples/Makefile.in @ 815

Last change on this file since 815 was 815, checked in by liveletlive, 16 years ago

Committing the /tmp/gekco/pgapack folder that contains the older PGAPack version and Prof. Klimecks changes to it.

File size: 362 bytes
Line 
1FC    = @FC@
2RM    = @RM@
3SHELL = @SHELL@
4
5default:
6        @echo "Making C examples"
7        @make C
8        @echo "Making fortran examples"
9        @make Fortran
10
11C:
12        @cd c; make
13
14Fortran:
15        @if test -n "$(FC)" ; then\
16                cd fortran; make; cd ..;\
17                cd mgh; make;\
18        else\
19                echo "Fortran compiler unavailable";\
20        fi
21
22clean:
23        @cd c; make clean
24        @cd fortran; make clean
25        @cd mgh; make clean
26
Note: See TracBrowser for help on using the repository browser.