-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
63 lines (58 loc) · 1.69 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
SUBDIRS = ext src run test
AUTOMAKE_LIST=autom4te.cache \
config.h \
config.status \
configure \
install-sh \
missing \
Makefile \
Makefile.in \
aclocal.m4 \
config.h.in \
config.log \
stamp-h1 \
depcomp \
compile \
.swp
all-local:
@echo ""
@echo "*============================================================*"
@echo " pdmt version 0.1 compilation successfully done"
@echo ""
if HAVEMED
@echo " In order to use medio please ensure to edit LD_LIBRARY_PATH"
@echo " use the following"
@echo ""
@echo ' export LD_LIBRARY_PATH=$$LD_LIBRARY_PATH:$(hdf5)/lib:$(medfile)/lib:$(medcoupling)/lib'
endif
if HAVEDEPENDENCIES
@echo " In order to use medio please ensure to edit LD_LIBRARY_PATH"
@echo " use the following"
@echo ""
@echo ' export LD_LIBRARY_PATH=$$LD_LIBRARY_PATH:$(PDMT_HDF5_DIR)/lib:$(PDMT_MEDFILE_DIR)/lib:$(PDMT_MEDCOUPLING_DIR)/lib'
endif
@echo ""
@echo " after <make install> pdmt can be used with FreeFEM"
@echo " you will find it in ${prefix} folder."
@echo ""
@echo "*============================================================*"
@echo ""
clean-local:
@echo ""
@echo "*============================================================*"
@echo " Cleaning files in :"; pwd
@echo "*============================================================*"
@echo ""
rm -f *~ *.vtk *.vtu *.med *.txt
install-exec-local:
@mkdir -p ${prefix}
if HAVEDEPENDENCIES
@cp $(PDMT_MEDIO_DIR).so ${prefix}/lib/.
endif
maintainer-clean-local: clean-local
@echo ""
@echo "*============================================================*"
@echo " Cleaning automake generated files"
@echo "*============================================================*"
@echo ""
rm -rf Makefile Makefile.in ${AUTOMAKE_LIST}