summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean Delvare <jdelvare@suse.de>2020-04-07 11:55:41 +0200
committerJean Delvare <jdelvare@suse.de>2020-04-07 11:55:41 +0200
commit51bfbe2d5e8728e47f38eb44464f58ad674c4289 (patch)
tree1c5517852db422fe99c9814565472e16f6772612
parentfd4a87bffcf55db6c9c9d460b1b0b5e6fe9a0f03 (diff)
downloaddmidecode-git-51bfbe2d5e8728e47f38eb44464f58ad674c4289.tar.gz
dmidecode: Add missing build dependencies on dmioutput.h
dmidecode.c and dmioem.c both include dmioutput.h so they must be rebuilt if that header file changes. Signed-off-by: Jean Delvare <jdelvare@suse.de>
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 97a1782..194a523 100644
--- a/Makefile
+++ b/Makefile
@@ -78,13 +78,13 @@ vpddecode : vpddecode.o vpdopt.o util.o
#
dmidecode.o : dmidecode.c version.h types.h util.h config.h dmidecode.h \
- dmiopt.h dmioem.h
+ dmiopt.h dmioem.h dmioutput.h
$(CC) $(CFLAGS) -c $< -o $@
dmiopt.o : dmiopt.c config.h types.h util.h dmidecode.h dmiopt.h
$(CC) $(CFLAGS) -c $< -o $@
-dmioem.o : dmioem.c types.h dmidecode.h dmioem.h
+dmioem.o : dmioem.c types.h dmidecode.h dmioem.h dmioutput.h
$(CC) $(CFLAGS) -c $< -o $@
dmioutput.o : dmioutput.c types.h dmioutput.h