From 58cf612fa977e2c81aeb5cbf916fa1b4e29588e1 Mon Sep 17 00:00:00 2001 From: zolliker Date: Tue, 10 Nov 2009 10:39:29 +0000 Subject: [PATCH] - introduced header file dependency check SKIPPED: psi/hardsup/make_gen psi/hardsup/makefile_linux --- matrix/make_gen | 3 +-- matrix/makefile_linux | 5 ++++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/matrix/make_gen b/matrix/make_gen index 992e1d54..4d142e12 100644 --- a/matrix/make_gen +++ b/matrix/make_gen @@ -14,5 +14,4 @@ libmatrix.a: $(OBJ) ranlib libmatrix.a clean: - rm -f *.o - rm -f *.a + rm -f *.o *.a *.d diff --git a/matrix/makefile_linux b/matrix/makefile_linux index addaf48b..2021c24c 100644 --- a/matrix/makefile_linux +++ b/matrix/makefile_linux @@ -9,6 +9,9 @@ include ../linux_def CC = gcc -CFLAGS = -g $(DFORTIFY) +CFLAGS = -g $(DFORTIFY) -MMD include make_gen + +-include $(OBJ:.o=.d) +