diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2016-05-09 19:05:49 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2016-05-10 15:58:53 +0100 |
commit | 41313d92e0f157dacfa758993e7fc76e291b0415 (patch) | |
tree | 50cf7f7a58373f3bace3f1a447405af77e01ccca /src/OS/Makefile-Base | |
parent | 0cd5fd23fdc042cd634a1033350bf91689f26d3c (diff) |
Collect spool-layout code to one file
Diffstat (limited to 'src/OS/Makefile-Base')
-rw-r--r-- | src/OS/Makefile-Base | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/OS/Makefile-Base b/src/OS/Makefile-Base index cba5cd359..2e77adbd5 100644 --- a/src/OS/Makefile-Base +++ b/src/OS/Makefile-Base @@ -447,7 +447,13 @@ MONBIN = em_StripChart.o $(EXIMON_TEXTPOP) em_globals.o em_init.o \ # The complete modules list also includes some specially compiled versions of # code from the main Exim source tree. -OBJ_MONBIN = util-spool_in.o util-store.o util-string.o tod.o tree.o $(MONBIN) +OBJ_MONBIN = util-spool_in.o \ + util-store.o \ + util-string.o \ + util-queue.o \ + tod.o \ + tree.o \ + $(MONBIN) eximon.bin: $(EXIMON_EDITME) eximon $(OBJ_MONBIN) \ ../exim_monitor/em_version.c @@ -564,6 +570,10 @@ util-string.o: $(HDRS) string.c @echo "$(CC) -DCOMPILE_UTILITY string.c" $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) -DCOMPILE_UTILITY -o util-string.o string.c +util-queue.o: $(HDRS) queue.c + @echo "$(CC) -DCOMPILE_UTILITY queue.c" + $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) -DCOMPILE_UTILITY -o util-queue.o queue.c + util-os.o: $(HDRS) os.c @echo "$(CC) -DCOMPILE_UTILITY os.c" $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) \ |