summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJean Delvare <jdelvare@suse.de>2005-02-06 16:01:25 +0000
committerJean Delvare <jdelvare@suse.de>2005-02-06 16:01:25 +0000
commitb7e763e284fa3a2329f4c7df7fc0625c86b9068e (patch)
tree06f643646961421e15a7ac6ca41d0db29661a702 /Makefile
parent556fec33623161ba8dfdd442309848c2046d026c (diff)
downloaddmidecode-git-b7e763e284fa3a2329f4c7df7fc0625c86b9068e.tar.gz
Everything depends on config.h.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index ca6d26b..47dd3c4 100644
--- a/Makefile
+++ b/Makefile
@@ -49,19 +49,19 @@ vpddecode : vpddecode.o util.o
# Objects
#
-dmidecode.o : dmidecode.c version.h types.h util.h
+dmidecode.o : dmidecode.c version.h types.h util.h config.h
$(CC) $(CFLAGS) -c $< -o $@
-biosdecode.o : biosdecode.c version.h types.h util.h
+biosdecode.o : biosdecode.c version.h types.h util.h config.h
$(CC) $(CFLAGS) -c $< -o $@
-ownership.o : ownership.c types.h util.h
+ownership.o : ownership.c types.h util.h config.h
$(CC) $(CFLAGS) -c $< -o $@
-vpddecode.o : vpddecode.c version.h types.h util.h
+vpddecode.o : vpddecode.c version.h types.h util.h config.h
$(CC) $(CFLAGS) -c $< -o $@
-util.o : util.c types.h util.h
+util.o : util.c types.h util.h config.h
$(CC) $(CFLAGS) -c $< -o $@
#