source:
lliurex-artwork-backgrounds/trunk/fuentes/enterprise/Makefile
@
1752
Last change on this file since 1752 was 56, checked in by , 5 years ago | |
---|---|
File size: 357 bytes |
Line | |
---|---|
1 | NO_COLOR = \x1b[0m |
2 | BUILD_COLOR = \x1b[32;01m |
3 | CLEAN_COLOR = \x1b[31;01m |
4 | |
5 | |
6 | FILES:=$(patsubst %.svg,%.png,$(wildcard *.svg)) |
7 | |
8 | |
9 | all: $(FILES) |
10 | |
11 | %.png : %.svg |
12 | @echo -e '$(BUILD_COLOR)* Rendering [$@]$(NO_COLOR)' |
13 | inkscape $< -z -e=$@ |
14 | |
15 | |
16 | clean: |
17 | @echo -e '$(CLEAN_COLOR)* Cleaning...$(NO_COLOR)' |
18 | rm -rf $(patsubst %.svg,%.png,$(wildcard *.svg)) |
19 | |
20 |
Note: See TracBrowser
for help on using the repository browser.