summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeiko Schlittermann <hs+exim@schlittermann.de>2015-04-13 15:55:04 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2015-04-13 15:55:04 +0100
commit13510a2575ce7d149b0a1fda78b13fce12b3faa5 (patch)
tree36df06187337ffd00a23115ddb49016eed4c5fe7
parentc9068a49f52c7b42b49944852d6b93e95abb71dc (diff)
Fix build dependency. Bug 1611
-rw-r--r--src/OS/Makefile-Base24
1 files changed, 22 insertions, 2 deletions
diff --git a/src/OS/Makefile-Base b/src/OS/Makefile-Base
index 63646e218..0fac6d7a3 100644
--- a/src/OS/Makefile-Base
+++ b/src/OS/Makefile-Base
@@ -445,8 +445,28 @@ eximon.bin: $(EXIMON_EDITME) eximon $(OBJ_MONBIN) \
# in one. This list is overkill, but it doesn't really take much time to
# rebuild Exim on a modern computer.
-HDRS = config.h dbfunctions.h dbstuff.h exim.h functions.h globals.h local_scan.h macros.h mytypes.h structs.h
-PHDRS = ../config.h ../dbfunctions.h ../dbstuff.h ../exim.h ../functions.h ../globals.h ../local_scan.h ../macros.h ../mytypes.h ../structs.h
+HDRS = config.h \
+ dbfunctions.h \
+ dbstuff.h \
+ exim.h \
+ functions.h \
+ globals.h \
+ local_scan.h \
+ macros.h \
+ mytypes.h \
+ structs.h \
+ os.h
+PHDRS = ../config.h \
+ ../dbfunctions.h \
+ ../dbstuff.h \
+ ../exim.h \
+ ../functions.h \
+ ../globals.h \
+ ../local_scan.h \
+ ../macros.h \
+ ../mytypes.h \
+ ../structs.h \
+ ../os.h
.SUFFIXES: .o .c
.c.o:; @echo "$(CC) $*.c"