From 17f9579803dd5c804c9d4f3f4bb09102f7e621f3 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Thu, 28 Apr 2011 07:51:09 +0000 Subject: [PATCH] Fixing dependencies --- src/Makefile | 2 +- src/project.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile b/src/Makefile index 6de9d31..b1dc051 100644 --- a/src/Makefile +++ b/src/Makefile @@ -60,7 +60,7 @@ arch.o: arch.c arch.h ../config.h asm.o: asm.c ../include/Asm.h code.h parser.h ../config.h $(CC) $(libasm_CFLAGS) -c asm.c -code.o: code.c ../include/Asm.h arch.h code.h +code.o: code.c ../include/Asm.h arch.h code.h format.h $(CC) $(libasm_CFLAGS) -c code.c format.o: format.c format.h ../config.h diff --git a/src/project.conf b/src/project.conf index 442bf7e..8d88436 100644 --- a/src/project.conf +++ b/src/project.conf @@ -40,7 +40,7 @@ depends=arch.h,../config.h depends=../include/Asm.h,code.h,parser.h,../config.h [code.c] -depends=../include/Asm.h,arch.h,code.h +depends=../include/Asm.h,arch.h,code.h,format.h [deasm.c] depends=../include/Asm.h