]> SALOME platform Git repositories - tools/yacsgen.git/blob - Examples/ast1/fcompo/Makefile
Salome HOME
CCAR: add two examples with Code_Aster : ast1 and ast2
[tools/yacsgen.git] / Examples / ast1 / fcompo / Makefile
1 FC=g77
2
3 KERNEL_ROOT_DIR=/local/chris/SALOME2/RELEASES/Install/KERNEL_V5
4
5 KERNEL_LIBS= -L$(KERNEL_ROOT_DIR)/lib/salome -lCalciumC -lSalomeDSCSuperv -lSalomeDSCContainer -lSalomeDatastream -lSalomeDSCSupervBasic
6
7 all: libfcompo.so
8
9 libfcompo.so:compo.o 
10         $(FC) -shared -o libfcompo.so compo.o ${KERNEL_LIBS} -Wl,--rpath -Wl,$(KERNEL_ROOT_DIR)/lib/salome -fexceptions
11 compo.o:compo.f
12         $(FC) -c compo.f -I$(KERNEL_ROOT_DIR)/include/salome -fexceptions
13
14 clean:
15         rm -f *.o *.so
16