File: Makefile

package info (click to toggle)
python-xlib 0.33-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,040 kB
  • sloc: python: 23,022; awk: 89; makefile: 60; sh: 10
file content (17 lines) | stat: -rw-r--r-- 223 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Top-level makefile for Python Xlib documentation

FORMATS = info ps html

all: $(FORMATS)

info::
	(cd info; make)

ps::
	(cd ps; make)

html::
	(cd html; make)

clean:
	for f in $(FORMATS); do (cd $$f; make clean); done