File: Makefile

package info (click to toggle)
pylize 1.3b-5
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 356 kB
  • ctags: 140
  • sloc: python: 935; makefile: 65
file content (12 lines) | stat: -rw-r--r-- 312 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
PYTHON = python
PY_VER = $(shell $(PYTHON) -c 'import sys;print "%i.%i" % sys.version_info[:2]')
DOCS = $(filter-out all.html, $(wildcard *.html)) logo.png css icons pylize.js
PYLIZE = ../build/scripts-$(PY_VER)/pylize

all: doc

doc: all.html $(PYLIZE)
	$(PYTHON) $(PYLIZE) -s -L ../lib

clean:
	rm -rf $(DOCS)