Skip to content
Snippets Groups Projects
Commit aa2217a4 authored by Julien Signoles's avatar Julien Signoles
Browse files

bug fixed in Makefile + small improvment in configure

parent 8d4b5e0f
No related branches found
No related tags found
No related merge requests found
...@@ -100,12 +100,5 @@ include $(FRAMAC_SHARE)/Makefile.dynamic ...@@ -100,12 +100,5 @@ include $(FRAMAC_SHARE)/Makefile.dynamic
# Regenerating the Makefile on need # # Regenerating the Makefile on need #
##################################### #####################################
ifeq ("$(FRAMAC_INTERNAL)","yes") $(E_ACSL_DIR)/Makefile: $(E_ACSL_DIR)/Makefile.in $(E_ACSL_DIR)/config.status
CONFIG_STATUS_DIR=$(FRAMAC_SRC) cd $(E_ACSL_DIR) && ./config.status
else
CONFIG_STATUS_DIR=.
endif
$(E_ACSL_DIR)/Makefile: $(E_ACSL_DIR)/Makefile.in \
$(CONFIG_STATUS_DIR)/config.status
cd $(CONFIG_STATUS_DIR) && ./config.status
...@@ -55,7 +55,7 @@ AC_CHECK_HEADER(stdio.h,HAVE_STDIO_H=yes,) ...@@ -55,7 +55,7 @@ AC_CHECK_HEADER(stdio.h,HAVE_STDIO_H=yes,)
if test -z $CC; then if test -z $CC; then
MAY_RUN_TESTS=no MAY_RUN_TESTS=no
AC_MSG_WARN([no C compiler: non-regression tests unavailable.]) AC_MSG_WARN([no C compiler: non-regression tests unavailable.])
fi else
if test -z $HAVE_STDIO_H; then if test -z $HAVE_STDIO_H; then
MAY_COMPILE_WITH_CC=false MAY_COMPILE_WITH_CC=false
...@@ -88,6 +88,8 @@ if test -z $HAVE_GMP; then ...@@ -88,6 +88,8 @@ if test -z $HAVE_GMP; then
AC_MSG_WARN([GMP library missing: non-regression tests unavailable.]) AC_MSG_WARN([GMP library missing: non-regression tests unavailable.])
fi fi
fi # testing $CC
####################### #######################
# Generating Makefile # # Generating Makefile #
####################### #######################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment