Commit 4f163443 authored by Ed Rodriguez's avatar Ed Rodriguez Committed by Jim Harris
Browse files

make: Update build artifact timestamps for clang support



Change-Id: Ibc165386b074d82969610467f4da73c73d8f4ea0
Signed-off-by: default avatarEd rodriguez <edwinr@netapp.com>
Reviewed-on: https://review.gerrithub.io/386164


Tested-by: default avatarSPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: default avatarDaniel Verkamp <daniel.verkamp@intel.com>
Reviewed-by: default avatarJim Harris <james.r.harris@intel.com>
parent d62e9282
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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=\