File: optipng.mk

package info (click to toggle)
ns3 3.17%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 95,192 kB
  • ctags: 56,763
  • sloc: cpp: 324,361; python: 291,824; perl: 8,720; ansic: 2,097; xml: 2,000; makefile: 1,447; sh: 458; cs: 89
file content (8 lines) | stat: -rw-r--r-- 191 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
FILES := $(shell find ns-3.*/doc/html/ -type f -name '*_*_*.png' -printf "%p\t")
TARGETS := $(FILES:=-update)
all: $(TARGETS)

%-update: %
	optipng -preserve -quiet -fix -o 5 $<

.PHONY: all