summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author couriersud <couriersud@arcor.de>2015-01-12 02:10:57 +0100
committer couriersud <couriersud@arcor.de>2015-01-12 02:10:57 +0100
commitd9e4bfacb354ccd827dbe274cec3719a83374d18 (patch)
tree161021e18096aa960bc9efac5c44f878df47a044
parent6730fb495a135eeadb5ad8751b506b081e222c42 (diff)
Remove some "@". These should be used in the command definition.
-rw-r--r--makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/makefile b/makefile
index b5fee3a8930..a8b440a6739 100644
--- a/makefile
+++ b/makefile
@@ -994,12 +994,12 @@ endif
$(OBJ)/%.lh: $(SRC)/%.lay $(SRC)/build/file2str.py
@echo Converting $<...
- @$(PYTHON) $(SRC)/build/file2str.py $< $@ layout_$(basename $(notdir $<))
+ $(PYTHON) $(SRC)/build/file2str.py $< $@ layout_$(basename $(notdir $<))
$(OBJ)/%.fh: $(SRC)/%.png $(SRC)/build/png2bdc.py $(SRC)/build/file2str.py
@echo Converting $<...
- @$(PYTHON) $(SRC)/build/png2bdc.py $< $(OBJ)/temp.bdc
- @$(PYTHON) $(SRC)/build/file2str.py $(OBJ)/temp.bdc $@ font_$(basename $(notdir $<)) UINT8
+ $(PYTHON) $(SRC)/build/png2bdc.py $< $(OBJ)/temp.bdc
+ $(PYTHON) $(SRC)/build/file2str.py $(OBJ)/temp.bdc $@ font_$(basename $(notdir $<)) UINT8
$(DRIVLISTOBJ): $(DRIVLISTSRC)
@echo Compiling $<...