]> SALOME platform Git repositories - modules/visu.git/blob - Makefile.in
Salome HOME
NRI : First integration.
[modules/visu.git] / Makefile.in
1 # -* Makefile *- 
2 #
3 # Author : Patrick GOLDBRONN (CEA)
4 # Date : 28/06/2001
5 # $Header$
6 #
7
8 # source path
9 top_srcdir=@top_srcdir@
10 top_builddir=.
11 srcdir=@srcdir@
12 VPATH=.:@srcdir@:@top_srcdir@/bin:@top_srcdir@/resources:./bin:@top_srcdir@/idl:${KERNEL_ROOT_DIR}/idl/salome
13
14
15 @COMMENCE@
16
17 SUBDIRS = idl src
18
19 RESOURCES_FILES = \
20 ModuleVisu.png \
21 Visu_anim.png \
22 Visu_cutplane.png \
23 Visu_deformed.png \
24 Visu_deformed_anim.png \
25 Visu_eraseall.png \
26 Visu_isosurfaces.png \
27 Visu_plot2d.png \
28 Visu_plot3d.png \
29 Visu_points.png \
30 Visu_sameas.png \
31 Visu_scalars.png \
32 Visu_scalars_anim.png \
33 Visu_selectall.png \
34 Visu_selectionactor.png \
35 Visu_selectioncell.png \
36 Visu_selectionedge.png \
37 Visu_selectionpoint.png \
38 Visu_selectonly.png \
39 Visu_surface.png \
40 Visu_vectors.png \
41 Visu_wireframe.png \
42 Visu_scaling.png \
43 VISU_en.xml \
44 VISU_fr.xml \
45 Visu_tree_visu.png \
46 Visu_streamlines.png
47
48 BIN_SCRIPT=
49
50
51 # copy header files in common directory
52 ifeq ($(HAVE_SSTREAM),yes)
53   include_list=include/salome/SALOMEconfig.h
54 else
55   include_list=include/salome/SALOMEconfig.h include/salome/sstream
56 endif
57
58 inc: idl $(include_list)
59
60 include/salome/SALOMEconfig.h: salome_adm/unix/SALOMEconfig.h
61         -$(RM) $@
62         $(LN_S) ../../$< $@
63
64 include/salome/sstream: salome_adm/unix/sstream
65         -$(RM) $@
66         $(LN_S) ../../$< $@
67
68 depend: depend_idl
69
70 depend_idl:
71         (cd idl ; $(MAKE) $@) || exit 1
72
73 # doc is already build : if you want to had documents, go manually to doc and run 'make doc'
74 #doc:
75 #       (cd doc && $(MAKE) $@) || exit 1
76
77 install-end:
78 # finish libtool install
79 #       @$(LT) --mode=finish $(libdir)
80
81 install-include: $(include_list)
82         $(INSTALL) -d  $(includedir)
83         @for f in X $(include_list); do                         \
84            if test $$f != X; then                               \
85              ($(INSTALL_DATA) $$f $(includedir)/. || exit 1);   \
86            fi;                                                  \
87         done
88
89 # install script in $(bindir) :
90 install-bin: $(BIN_SCRIPT)
91         $(INSTALL) -d  $(bindir)
92         if test $(BIN_SCRIPT)X != X; then                       \
93                 $(INSTALL_PROGRAM) $^ $(bindir);                \
94         fi
95
96 uninstall: uninstall-idl
97
98 uninstall-idl:
99         $(RM) $(idldir)/*.idl
100
101 distclean: distclean-other
102
103 distclean-other:
104         -$(RM) salome_adm/unix/*~ salome_adm/unix/*% salome_adm/unix/*.bak salome_adm/unix/*.new salome_adm/unix/*.old
105         -$(RM) salome_adm/unix/make_* 
106         -$(RM) salome_adm/unix/depend salome_adm/unix/SALOMEconfig.h 
107         -$(RM) config.cache config.log config.status 
108
109 @MODULE@
110
111 install: install-bin install-include install-end
112