]> SALOME platform Git repositories - tools/hxx2salome.git/blob - CppExamples/COMPO_CXX_SRC/src/CALCULATOR/CALCULATOR_CXX/Makefile.am
Salome HOME
Merge GUI developments from BR_GUI
[tools/hxx2salome.git] / CppExamples / COMPO_CXX_SRC / src / CALCULATOR / CALCULATOR_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            = libCALCULATORCXX.la
12 libCALCULATORCXX_la_SOURCES  = Calculator.cxx
13 libCALCULATORCXX_la_LIBADD   = ${MED_LIBS}
14
15 # exported headers
16 library_includedir=$(includedir)
17 library_include_HEADERS = Calculator.hxx
18                         
19 CPPFLAGS                   =  -g -O2 -Wall ${MED_INCLUDES}
20
21 # \ -I ${srcdir}/src/CALCULATOR/CALCULATOR_CXX
22
23
24 bin_PROGRAMS = calculator
25 calculator_SOURCES = main.cxx
26 calculator_LDADD   = -L. -lCALCULATORCXX 
27
28
29 #
30 # Common end part
31 #
32
33 include $(top_srcdir)/adm/unix/make_end.am
34
35