File: Makefile.svg

package info (click to toggle)
jacktrip 1.0.5.patch2-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 748 kB
  • ctags: 473
  • sloc: cpp: 2,758; makefile: 86; sh: 26
file content (12 lines) | stat: -rw-r--r-- 153 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
src  	:= $(wildcard *.dsp)
target 	:= $(src:.dsp=.dsp-svg)

all :  $(target)


%.dsp-svg : %.dsp
	faust -svg $< > /dev/null
	

clean :
	rm -rf $(target)