diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2017-07-30 20:51:10 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2017-07-30 21:26:37 +0100 |
commit | 571b27158aa468eda77b1a20ed80bed1f342e15d (patch) | |
tree | 8b45d710f3696dc82711f4357f7afe96fea2e269 /src/OS | |
parent | 0d7474f16e482417c691db4d56afcd8e9d8ee97a (diff) |
Logging: millisecond timestamps. Bug 2102
No change to QT logging yet as that will need a spool format update
Diffstat (limited to 'src/OS')
-rw-r--r-- | src/OS/Makefile-Base | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/OS/Makefile-Base b/src/OS/Makefile-Base index 11f4dad0c..b4345e86f 100644 --- a/src/OS/Makefile-Base +++ b/src/OS/Makefile-Base @@ -487,7 +487,7 @@ OBJ_MONBIN = util-spool_in.o \ util-store.o \ util-string.o \ util-queue.o \ - tod.o \ + util-tod.o \ tree.o \ $(MONBIN) @@ -614,6 +614,10 @@ 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-tod.o: $(HDRS) tod.c + @echo "$(CC) -DCOMPILE_UTILITY tod.c" + $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) -DCOMPILE_UTILITY -o util-tod.o tod.c + util-os.o: $(HDRS) os.c @echo "$(CC) -DCOMPILE_UTILITY os.c" $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) \ |