1
|
prefix=@prefix@
|
2
|
exec_prefix=@exec_prefix@
|
3
|
bindir=@bindir@
|
4
|
datarootdir = ${prefix}/share
|
5
|
includedir = ${prefix}/include
|
6
|
|
7
|
LUSI_LIBS=include/lustrec_math.lusi include/simulink_math_fcn.lusi include/conv.lusi
|
8
|
LUSI_MPFR_LIB=include/mpfr_lustre.lusi
|
9
|
LOCAL_BINDIR=bin
|
10
|
LOCAL_DOCDIR=doc/manual
|
11
|
|
12
|
DEFAULT_TEST_TARGET=COMPIL_LUS\|MAKE\|BIN\|DIFF
|
13
|
|
14
|
all: lustrec lustret
|
15
|
|
16
|
lustrec:
|
17
|
@echo Compiling binary lustrec
|
18
|
@make -C src lustrec
|
19
|
|
20
|
lustret:
|
21
|
@echo Compiling binary lustret
|
22
|
@make -C src lustret
|
23
|
|
24
|
lustresf:
|
25
|
@echo Compiling binary lustresf
|
26
|
@make -C src lustresf
|
27
|
|
28
|
json-parser-ex:
|
29
|
@echo Compiling binary json-parser-ex
|
30
|
@make -C src json-parser-ex
|
31
|
|
32
|
configure: configure.ac
|
33
|
@echo configure.ac has changed relaunching autoconf
|
34
|
@autoconf
|
35
|
|
36
|
Makefile: Makefile.in config.status configure
|
37
|
@echo Makefile.in has changed relaunching autoconf
|
38
|
@./config.status --recheck
|
39
|
|
40
|
doc:
|
41
|
@echo Generating doc
|
42
|
@make -C src doc
|
43
|
|
44
|
dot: doc
|
45
|
@make -C src dot
|
46
|
|
47
|
clean: clean-lusic
|
48
|
@make -C src clean
|
49
|
|
50
|
dist-src-clean: clean
|
51
|
@rm -f config.log config.status include/*.lusic include/lustrec_math.h include/simulink_math_fcn.h include/conv.h include/mpfr_lustre.h
|
52
|
@rm -f Makefile ./src/Makefile ./src/pluginList.ml ./src/version.ml ./src/_tags
|
53
|
|
54
|
DIST_ARCHIVE_NAME=lustrec-$(shell $(LOCAL_BINDIR)/lustrec -version | grep version | cut -d, -f 2 | sed -e "s/ version //" -e "s/ (/-/" -e "s/ /-/" -e "s/\//-/" -e "s/)//")-src.tar.gz
|
55
|
|
56
|
dist-gzip: $(LOCAL_BINDIR)/lustrec dist-src-clean
|
57
|
@rm -f $(shell ls ../*lustrec*src*tar.gz)
|
58
|
@tar zcvf ../$(DIST_ARCHIVE_NAME) -C .. --exclude-vcs --exclude=Makefile --exclude=$(LOCAL_BINDIR) $(shell basename $(PWD))
|
59
|
@echo "Source distribution built: ../$(DIST_ARCHIVE_NAME)"
|
60
|
|
61
|
dist-clean: dist-src-clean
|
62
|
@rm -f configure Makefile
|
63
|
|
64
|
%.lusic: %.lusi
|
65
|
@echo Compiling $<
|
66
|
@$(LOCAL_BINDIR)/lustrec -verbose 0 -d include $<
|
67
|
|
68
|
clean-lusic:
|
69
|
@rm -f $(LUSI_LIBS:%.lusi=%.lusic)
|
70
|
@rm -f $(LUSI_MPFR_LIB:%.lusi=%.lusic)
|
71
|
|
72
|
compile-lusi: $(LUSI_LIBS:%.lusi=%.lusic)
|
73
|
|
74
|
compile-mpfr-lusi: $(LUSI_MPFR_LIB)
|
75
|
@echo Compiling $<
|
76
|
@$(LOCAL_BINDIR)/lustrec -verbose 0 -mpfr 1 -d include $<
|
77
|
|
78
|
install-include: compile-lusi compile-mpfr-lusi
|
79
|
mkdir -p ${includedir}/lustrec
|
80
|
cp include/* ${includedir}/lustrec
|
81
|
|
82
|
install-base: clean-lusic
|
83
|
mkdir -p ${bindir}
|
84
|
install -m 0755 $(LOCAL_BINDIR)/* ${bindir}
|
85
|
mkdir -p ${datarootdir}
|
86
|
install -m 0655 share/FindLustre.cmake ${datarootdir}
|
87
|
|
88
|
install: install-base install-include
|
89
|
|
90
|
test-config: ${bindir}/lustrec
|
91
|
if @PATH_TO_TESTS_DEFINED@; then \
|
92
|
mkdir -p test; \
|
93
|
cd test; \
|
94
|
cmake -DLUSTRE_PATH_HINT=${bindir} -DSUBPROJ=@GITBRANCH@ ../@PATH_TO_TESTS@; \
|
95
|
fi
|
96
|
|
97
|
test-no-submit: test-config
|
98
|
cd test; ctest -M Experimental -T Start -T Update -T Configure -T Build -T Test -R ${DEFAULT_TEST_TARGET}
|
99
|
|
100
|
test-submit: test-config
|
101
|
cd test; ctest -M Experimental -T Submit -R ${DEFAULT_TEST_TARGET}
|
102
|
|
103
|
test: test-config
|
104
|
cd test; ctest -D Experimental -R ${DEFAULT_TEST_TARGET}
|
105
|
|
106
|
test-full-no-submit: test-config
|
107
|
cd test; ctest -M Experimental -T Start -T Update -T Configure -T Build -T Test
|
108
|
|
109
|
test-full-submit: test-config
|
110
|
cd test; ctest -M Experimental -T Submit
|
111
|
|
112
|
test-full: test-config
|
113
|
cd test; ctest -D Experimental
|
114
|
|
115
|
|
116
|
.PHONY: all compile-lusi doc dot lustrec lustrec.odocl clean install dist-clean
|