From 973d1ad926439b890a56f57f6f21a98865e77a78 Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Mon, 7 Nov 2011 21:51:51 +0000 Subject: [PATCH] Fixed a Makefile error --- Cantera/src/transport/Makefile.in | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Cantera/src/transport/Makefile.in b/Cantera/src/transport/Makefile.in index df4315d5a..73e74392f 100644 --- a/Cantera/src/transport/Makefile.in +++ b/Cantera/src/transport/Makefile.in @@ -70,12 +70,17 @@ all: $(LIB) .depends @(for lh in $(CATRAN_H) ; do \ $(INSTALL_TSC) "$${lh}" $(INCDIR) ; \ done) -%.d: Makefile %.o + +.cpp.d: @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d .cpp.o: $(PURIFY) @CXX@ -c $< $(CXX_FLAGS) $(CXX_INCLUDES) +$(DEPENDS): Makefile + +$(CATRAN_OBJ): Makefile + $(LIB): $(CATRAN_OBJ) $(CATRAN_H) @ARCHIVE@ $(LIB) $(CATRAN_OBJ) > /dev/null ifeq ($(do_ranlib),1)