From c1a4737b127076c33de6a7bbdb7a36e2ee0ec0e2 Mon Sep 17 00:00:00 2001 From: Mick Jordan <mick.jordan@oracle.com> Date: Tue, 24 Jun 2014 20:10:33 -0700 Subject: [PATCH] prevent unnecessary rebuild of libRDerived --- com.oracle.truffle.r.native/Makefile | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/com.oracle.truffle.r.native/Makefile b/com.oracle.truffle.r.native/Makefile index 5ef07e48d2..038195314f 100644 --- a/com.oracle.truffle.r.native/Makefile +++ b/com.oracle.truffle.r.native/Makefile @@ -21,12 +21,22 @@ # questions. # +# +# This Makefile contains the recipe for creating libRDerived. However, it is distributed +# as a "source" in the repository file to avoid users having to have gfortran installed. +# Use "make cleanlib; make force" to force a rebuild. +# + ifneq ($(shell uname), Darwin) OS_DIR=linux +LIB_DERIVED=lib/$(OS_DIR)/libRDerived.so else OS_DIR=darwin +LIB_DERIVED=lib/$(OS_DIR)/libRDerived.dylib endif +.PHONY: all clean cleanlib cleanobj force + SRC = src OBJ = lib/$(OS_DIR) @@ -36,7 +46,13 @@ F_SOURCES := $(wildcard $(SRC)/*.f) C_OBJECTS := $(subst $(SRC),$(OBJ),$(C_SOURCES:.c=.o)) F_OBJECTS := $(subst $(SRC),$(OBJ),$(F_SOURCES:.f=.o)) -all: $(C_OBJECTS) $(F_OBJECTS) + +all: + echo $(LIB_DERIVED) is up to date + +force: $(LIB_DERIVED) + +$(LIB_DERIVED): $(C_OBJECTS) $(F_OBJECTS) ifneq ($(shell uname), Darwin) gcc -fPIC -shared -o ./lib/linux/libRDerived.so $(C_OBJECTS) $(F_OBJECTS) else @@ -50,9 +66,10 @@ $(OBJ)/%.o: $(SRC)/%.f gfortran -fPIC -O2 -c $< -o $@ -clean: +cleanlib: rm -f ./lib/$(OS_DIR)/libRDerived.* - rm -f ./lib/$(OS_DIR)/*.o + +clean: cleanobj cleanobj: rm -f ./lib/$(OS_DIR)/*.o -- GitLab