[llvm-commits] CVS: llvm/lib/Target/Sparc/Makefile

Misha Brukman brukman at cs.uiuc.edu
Fri Nov 7 11:27:02 PST 2003


Changes in directory llvm/lib/Target/Sparc:

Makefile updated: 1.35 -> 1.36

---
Log message:

Use `basename $<` to get just the filename, not full path, for ease of reading.


---
Diffs of the changes:  (+2 -2)

Index: llvm/lib/Target/Sparc/Makefile
diff -u llvm/lib/Target/Sparc/Makefile:1.35 llvm/lib/Target/Sparc/Makefile:1.36
--- llvm/lib/Target/Sparc/Makefile:1.35	Thu Nov  6 18:38:09 2003
+++ llvm/lib/Target/Sparc/Makefile	Fri Nov  7 11:26:27 2003
@@ -26,7 +26,7 @@
 	$(CXX) -E -I$(LLVM_SRC_ROOT)/include $(DEBUG_FLAG) -x c++ $< | $(SED) '/^#/d' | $(SED) 's/^Xinclude/#include/' | $(SED) 's/^Xdefine/#define/' > $@
 
 Sparc.burm.cpp: Sparc.burm
-	@echo "Burging $<"
+	@echo "Burging `basename $<`"
 	$(RunBurg) $< -o $@
 
 $(BUILD_OBJ_DIR)/Debug/Sparc.burm.lo: Sparc.burm.cpp
@@ -48,7 +48,7 @@
 $(TARGET_NAME)CodeEmitter.cpp:: $(TARGET_NAME)CodeEmitter.inc
 
 $(TARGET_NAME)CodeEmitter.inc:: $(SourceDir)/$(TARGET_NAME).td $(TABLEGEN_FILES) $(TBLGEN)
-	@echo "Tblgen'ing $<"
+	@echo "Tblgen'ing `basename $<`"
 	$(TBLGEN) -I $(SourceDir) $< -gen-emitter -o $@
 
 clean::





More information about the llvm-commits mailing list