make: Update build artifact timestamps for clang support

Change-Id: Ibc165386b074d82969610467f4da73c73d8f4ea0
Signed-off-by: Ed rodriguez <edwinr@netapp.com>
Reviewed-on: https://review.gerrithub.io/386164
Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
This commit is contained in:
Ed Rodriguez 2017-05-31 09:15:17 -04:00 committed by Jim Harris
parent d62e92823f
commit 4f16344356

View File

@ -166,12 +166,12 @@ DEPFLAGS = -MMD -MP -MF $*.d.tmp
COMPILE_C=\
$(Q)echo " CC $S/$@"; \
$(CC) -o $@ $(DEPFLAGS) $(CFLAGS) -c $< && \
mv -f $*.d.tmp $*.d
mv -f $*.d.tmp $*.d;touch -c $@
COMPILE_CXX=\
$(Q)echo " CXX $S/$@"; \
$(CXX) -o $@ $(DEPFLAGS) $(CXXFLAGS) -c $< && \
mv -f $*.d.tmp $*.d
mv -f $*.d.tmp $*.d;touch -c $@
# Link $(OBJS) and $(LIBS) into $@ (app)
LINK_C=\