File: Makefile

package info (click to toggle)
snakefood 1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 4,568 kB
  • ctags: 334
  • sloc: python: 2,212; makefile: 200; sh: 4
file content (19 lines) | stat: -rw-r--r-- 405 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Graph the dependencies for Numpy.

ROOT=$(HOME)/src/numpy

PDFS =						\
	numpy.pdf				\
	numpy-simple.pdf

include ../Makefile.rules

numpy.deps: raw.deps
	cp $< $@

numpy-simple.deps: numpy-simple.clusters raw.deps
	cat raw.deps | grep -v test | sfood-cluster -f $<  > $@

numpy-simple.clusters:
	( cd $(ROOT); find numpy -mindepth 1 -maxdepth 3 -type d | grep -v /.svn | sort -r ) > $(shell pwd)/$@