Commit 01bc1eafb2279ae8a668862b41eb7621487e4fcd
1 parent
a0fce292
Exists in
master
and in
5 other branches
Updating branding Makefile.
Showing
1 changed file
with
4 additions
and
3 deletions
Show diff stats
branding/Makefile.in
| ... | ... | @@ -48,7 +48,7 @@ OPTIPNG=@OPTIPNG@ |
| 48 | 48 | $(BINDIR)/%.png: \ |
| 49 | 49 | %.svg |
| 50 | 50 | |
| 51 | - @echo $< ... | |
| 51 | + @echo $@ ... | |
| 52 | 52 | @$(MKDIR) `dirname $@` |
| 53 | 53 | @$(CONVERT) -background transparent $< $@ |
| 54 | 54 | @$(OPTIPNG) -o7 $@ |
| ... | ... | @@ -56,7 +56,7 @@ $(BINDIR)/%.png: \ |
| 56 | 56 | $(BINDIR)/%.ico: \ |
| 57 | 57 | %.svg |
| 58 | 58 | |
| 59 | - @echo $< ... | |
| 59 | + @echo $@ ... | |
| 60 | 60 | @$(MKDIR) `dirname $@` |
| 61 | 61 | @$(CONVERT) -density 384 -background transparent $< -define icon:auto-resize -colors 256 $@ |
| 62 | 62 | |
| ... | ... | @@ -67,13 +67,14 @@ $(SRCDIR): |
| 67 | 67 | $(BINDIR)/%.png: \ |
| 68 | 68 | %.png |
| 69 | 69 | |
| 70 | - @echo $< ... | |
| 70 | + @echo $@ ... | |
| 71 | 71 | @$(MKDIR) `dirname $@` |
| 72 | 72 | @$(OPTIPNG) -out $@ -o7 $< |
| 73 | 73 | |
| 74 | 74 | $(DESTDIR)$(datarootdir)/$(PACKAGE_NAME)/%.png: \ |
| 75 | 75 | $(BINDIR)/%.png |
| 76 | 76 | |
| 77 | + @echo $@ ... | |
| 77 | 78 | @$(MKDIR) `dirname $@` |
| 78 | 79 | @$(INSTALL_DATA) $< $@ |
| 79 | 80 | ... | ... |