File: Makefile

package info (click to toggle)
python-debianbts 1.9
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 60 kB
  • ctags: 33
  • sloc: python: 205; makefile: 66
file content (12 lines) | stat: -rw-r--r-- 159 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
all:
	$(MAKE) all -C src
	$(MAKE) all -C test

install:
	$(MAKE) install -C src
	$(MAKE) install -C test

clean:
	$(MAKE) clean -C src
	$(MAKE) clean -C test