File: Makefile

package info (click to toggle)
debbugs 2.6.4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,800 kB
  • sloc: perl: 19,270; makefile: 81; sh: 75
file content (16 lines) | stat: -rw-r--r-- 522 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/make -f

all: debbugs_logo.svg debbugs_logo_icon.png

## if you want to modify debbugs_logo.svg do the modifications to
## debbugs_logo_orig.svg, and then run make update_debbugs_logo and check the
## changes in.
update_debbugs_logo: debbugs_logo_orig.svg
	inkscape --without-gui \
	--export-text-to-path --export-plain-svg debbugs_logo.svg $<;

debbugs_logo_icon.png: debbugs_logo.svg
	inkscape  \
	--export-width 32 --export-height 32 \
	--export-background=white \
	--export-type=png --export-filename=$@ $<