]> SALOME platform Git repositories - tools/yacsgen.git/blob - Examples/fort1/Makefile
Salome HOME
CCAR: initial version
[tools/yacsgen.git] / Examples / fort1 / Makefile
1
2 FC=g77
3
4 KERNEL_ROOT_DIR=/local/chris/SALOME2/RELEASES/Install/KERNEL_V5
5
6 all:libcode1.so libcode2.so
7 libcode1.so:code1.o
8           $(FC) -shared -o libcode1.so code1.o
9 code1.o:code1.f
10           $(FC) -c code1.f -I$(KERNEL_ROOT_DIR)/include/salome -fexceptions
11 libcode2.so:code2.o
12           $(FC) -shared -o libcode2.so code2.o
13 code2.o:code2.f
14           $(FC) -c code2.f -I$(KERNEL_ROOT_DIR)/include/salome -fexceptions
15
16 clean:
17         rm -rf *.o *.so