diff --git a/src/Makefile b/src/Makefile index 0f40367..a4d25fb 100644 --- a/src/Makefile +++ b/src/Makefile @@ -52,10 +52,12 @@ dep: boot.o: boot.c common.h dosfsck.h io.h boot.h check.o: check.c common.h dosfsck.h io.h fat.h file.h lfn.h check.h common.o: common.c common.h -dosfsck.o: dosfsck.c common.h dosfsck.h io.h boot.h fat.h file.h \ - check.h -dosfslabel.o: dosfslabel.c common.h dosfsck.h io.h boot.h fat.h file.h check.h +dosfsck.o: dosfsck.c version.h common.h dosfsck.h io.h boot.h fat.h \ + file.h check.h +dosfslabel.o: dosfslabel.c version.h common.h dosfsck.h io.h boot.h fat.h \ + file.h check.h fat.o: fat.c common.h dosfsck.h io.h check.h fat.h file.o: file.c common.h file.h io.o: io.c dosfsck.h common.h io.h lfn.o: lfn.c common.h io.h dosfsck.h lfn.h file.h +mkdosfs.o: mkdosfs.c version.h diff --git a/src/dosfsck.c b/src/dosfsck.c index d19e9ed..5bff2c0 100644 --- a/src/dosfsck.c +++ b/src/dosfsck.c @@ -6,7 +6,7 @@ * by Roman Hodek */ -#include "../version.h" +#include "version.h" #include #include diff --git a/src/dosfslabel.c b/src/dosfslabel.c index ea5ae1c..b1caac9 100644 --- a/src/dosfslabel.c +++ b/src/dosfslabel.c @@ -5,7 +5,7 @@ * Portions copyright 1993 Werner Almesberger. */ -#include "../version.h" +#include "version.h" #include #include diff --git a/src/mkdosfs.c b/src/mkdosfs.c index b3ca1e0..14c74e5 100644 --- a/src/mkdosfs.c +++ b/src/mkdosfs.c @@ -47,7 +47,7 @@ /* Include the header files */ -#include "../version.h" +#include "version.h" #include #include