]> SALOME platform Git repositories - tools/hxx2salome.git/blob - CppExamples/COMPO_CXX_SRC/src/CALCUL/CALCUL_CXX/Makefile.am
Salome HOME
GUI developement
[tools/hxx2salome.git] / CppExamples / COMPO_CXX_SRC / src / CALCUL / CALCUL_CXX / Makefile.am
1 #
2 # Common begin part
3 #
4
5 include $(top_srcdir)/adm/unix/make_begin.am
6
7 #
8 # Developper part
9 #
10
11 lib_LTLIBRARIES            = libCALCULCXX.la
12 libCALCULCXX_la_SOURCES  = Calc.cxx
13 libCALCULCXX_la_LIBADD   =
14
15 # exported headers
16 library_includedir=$(includedir)
17 library_include_HEADERS = Calc.hxx
18                         
19 CPPFLAGS                   =  -g -O2 -Wall
20
21 # \ -I ${srcdir}/src/CALCUL/CALCUL_CXX
22
23
24 bin_PROGRAMS = calc
25 calc_SOURCES = main.cxx
26 calc_LDADD   = -L. -lCALCULCXX 
27
28
29 #
30 # Common end part
31 #
32
33 include $(top_srcdir)/adm/unix/make_end.am
34
35