Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
7f88068e
Commit
7f88068e
authored
8 years ago
by
Kostyantyn Vorobyov
Browse files
Options
Downloads
Patches
Plain Diff
[Makefile] Fixes in distribution taking into account tests and contrib libraries
parent
803cc23d
No related branches found
No related tags found
No related merge requests found
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/plugins/e-acsl/Makefile.in
+28
-21
28 additions, 21 deletions
src/plugins/e-acsl/Makefile.in
src/plugins/e-acsl/contrib/MANIFEST
+2140
-0
2140 additions, 0 deletions
src/plugins/e-acsl/contrib/MANIFEST
with
2168 additions
and
21 deletions
src/plugins/e-acsl/Makefile.in
+
28
−
21
View file @
7f88068e
...
...
@@ -148,7 +148,10 @@ JEMALLOC_DIR := $(PLUGIN_DIR)/contrib/libjemalloc
JEMALLOC_LIBNAME
=
libjemalloc-e-acsl.a
JEMALLOC_LIB
=
$(
EACSL_LIBDIR
)
/
$(
JEMALLOC_LIBNAME
)
$(JEMALLOC_LIB)
:
$(EACSL_LIBDIR)
:
$(
MKDIR
)
$(
EACSL_LIBDIR
)
$(JEMALLOC_LIB)
:
$(EACSL_LIBDIR)
cd
$(
JEMALLOC_DIR
)
&&
\
./autogen.sh
\
--with-jemalloc-prefix
=
"__e_acsl_native_"
\
...
...
@@ -161,7 +164,7 @@ GMP_DIR := $(PLUGIN_DIR)/contrib/libgmp
GMP_LIBNAME
=
libgmp-e-acsl.a
GMP_LIB
=
$(
EACSL_LIBDIR
)
/
$(
GMP_LIBNAME
)
$(GMP_LIB)
:
$(GMP_LIB)
:
$(EACSL_LIBDIR)
cd
$(
GMP_DIR
)
&&
./configure
&&
$(
MAKE
)
$(
MAKEOPTS
)
$(
CP
)
$(
GMP_DIR
)
/.libs/libgmp.a
$@
...
...
@@ -170,10 +173,10 @@ all:: $(JEMALLOC_LIB) $(GMP_LIB)
clean
::
$(
PRINT_RM
)
e-acsl contrib libraries
if
test
-f
$(
JEMALLOC_DIR
)
/Makefile
;
\
then
$(
MAKE
)
-C
$(
JEMALLOC_DIR
)
relclean
;
\
then
$(
MAKE
)
-s
-C
$(
JEMALLOC_DIR
)
relclean
;
\
fi
if
test
-f
$(
GMP_DIR
)
/Makefile
;
\
then
$(
MAKE
)
-C
$(
GMP_DIR
)
distclean
;
\
then
$(
MAKE
)
-s
-C
$(
GMP_DIR
)
distclean
;
\
fi
############
...
...
@@ -207,6 +210,9 @@ EACSL_OCAML_FILES = \
$(
filter-out
$(
wildcard
*
local_config.ml
)
,
$(
wildcard
*
.ml
))
\
$(
wildcard
*
.mli
)
EACSL_CONTRIB_FILES
=
\
$(
shell
$(
CAT
)
contrib/MANIFEST |
$(
SED
)
's/^/contrib\//g'
)
EACSL_DOC_FILES
=
\
doc/manuals/e-acsl-manual.pdf
\
doc/manuals/e-acsl.pdf
\
...
...
@@ -216,9 +222,14 @@ EACSL_DOC_FILES = \
man/e-acsl-gcc.sh.1
EACSL_TEST_FILES
=
\
tests/test_config.in
\
tests/print.ml
\
$(
foreach
dir
,
$(
TESTDIRS
)
,
$(
wildcard
$(
dir
)
/
*
$(
dir
)
/
*
/
*
))
tests/test_config.in tests/print.ml
\
$(
foreach
dir
,
$(
addprefix tests/,
$(
PLUGIN_TESTS_DIRS
))
,
\
$(
wildcard
\
$(
dir
)
/
*
.[ic]
\
$(
dir
)
/test_config
\
$(
dir
)
/oracle/
*
.c
\
$(
dir
)
/oracle/
*
.oracle
\
))
EACSL_RTL_FILES
=
$(
wildcard share/e-acsl/
*
.[ch] share/e-acsl/
*
/
*
.[ch]
)
...
...
@@ -228,15 +239,18 @@ EACSL_LICENSE_FILES = \
license/CEA_LGPL license/SPARETIMELABS
\
license/headache_config.txt license/LGPLv2.1
EACSL_MISC_FILES
=
\
configure.ac Makefile.in INSTALL README VERSION .depend
EACSL_DISTRIB_FILES
=
\
configure.ac Makefile.in
\
INSTALL README VERSION .depend
\
$(
EACSL_MISC_FILES
)
\
$(
EACSL_OCAML_FILES
)
\
$(
EACSL_DOC_FILES
)
\
$(
EACSL_TEST_FILES
)
\
$(
EACSL_RTL_FILES
)
\
$(
EACSL_SCRIPT_FILES
)
\
$(
EACSL_LICENSE_FILES
)
$(
EACSL_LICENSE_FILES
)
\
$(
EACSL_CONTRIB_FILES
)
# BE CAREFUL: manually remove all *.ml* files which should not be released!
e-acsl-distrib
:
.depend
...
...
@@ -246,19 +260,12 @@ e-acsl-distrib: .depend
$(
MKDIR
)
$(
EXPORT
)
$(
PRINT_UNTAR
)
tmp-distrib
cd
$(
EXPORT
);
\
$(
TAR
)
xf ../tmp.tar
;
autoconf
;
\
$(
SED
)
-i
\
-e
's/IS_DISTRIBUTED:=no/IS_DISTRIBUTED:=yes/'
Makefile.in
;
\
$(
RM
)
-rf
autom4te.cache
$(
TAR
)
xf ../tmp.tar
&&
\
autoconf
&&
\
$(
SED
)
-i
-e
's/IS_DISTRIBUTED:=no/IS_DISTRIBUTED:=yes/'
Makefile.in
&&
\
$(
RM
)
-rf
autom4te.cache
$(
PRINT_RM
)
tmp-distrib
$(
RM
)
tmp.tar
$(
PRINT_MAKING
)
test
directories
for
dir
in
$(
EXPORT
)
/tests/
*
;
do
\
if
test
-d
$$
dir
;
then
\
$(
MKDIR
)
$$
dir
/result
;
\
$(
MKDIR
)
$$
dir
/oracle
;
\
fi
\
done
$(
PRINT_MAKING
)
archive
$(
TAR
)
czf
$(
EXPORT
)
.tar.gz
$(
EXPORT
)
$(
PRINT
)
Cleaning
...
...
This diff is collapsed.
Click to expand it.
src/plugins/e-acsl/contrib/MANIFEST
0 → 100644
+
2140
−
0
View file @
7f88068e
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment