From: Jens Axboe Date: Thu, 22 Feb 2007 10:24:59 +0000 (+0100) Subject: Include engines in dependency check X-Git-Tag: fio-1.12~34 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=e9310e0557c342edb6849ba5262f338fca5c272f;p=fio.git Include engines in dependency check Changing fio.h sometimes didn't trigger rebuild of the IO engines, causing weird problems. Signed-off-by: Jens Axboe --- diff --git a/Makefile b/Makefile index 740a2423..3a51af34 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ clean: -rm -f *.o .depend cscope.out $(PROGS) engines/*.o core.* core depend: - @$(CC) -MM $(ALL_CFLAGS) *.c 1> .depend + @$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c 1> .depend cscope: @cscope -b diff --git a/Makefile.FreeBSD b/Makefile.FreeBSD index 5c85a0c3..b877901a 100644 --- a/Makefile.FreeBSD +++ b/Makefile.FreeBSD @@ -21,7 +21,7 @@ clean: -rm -f *.o .depend cscope.out $(PROGS) depend: - @$(CC) -MM $(ALL_CFLAGS) *.c 1> .depend + @$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c 1> .depend cscope: @cscope -b diff --git a/Makefile.solaris b/Makefile.solaris index 4373abfb..1e82158f 100644 --- a/Makefile.solaris +++ b/Makefile.solaris @@ -21,7 +21,7 @@ clean: -rm -f *.o .depend cscope.out $(PROGS) depend: - @$(CC) -MM $(ALL_CFLAGS) *.c 1> .depend + @$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c 1> .depend cscope: @cscope -b