File: Makefile

package info (click to toggle)
python-rst2ansi 0.1.5-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 256 kB
  • sloc: python: 779; sh: 16; makefile: 16
file content (20 lines) | stat: -rw-r--r-- 241 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
20
PY := python3

export PATH := $(shell pwd)/bin:$(PATH)
export PYTHONPATH=$(shell pwd)

BUILD = $(PY) setup.py

build:
	$(BUILD) build

install:
	$(BUILD) install

test:
	cram test -v

clean:
	$(BUILD) clean

.PHONY: build install test clean