ready for debian packaging now

This commit is contained in:
gwen
2012-07-13 11:22:00 +02:00
parent 9aa9d9780a
commit e3b379b974
6 changed files with 45 additions and 2 deletions

25
Makefile Normal file
View File

@ -0,0 +1,25 @@
#!/usr/bin/make
INSTALL := install
INSTALL_DATA := install -m 644
INSTALL_PROGRAM := install -m 755
INSTALL_DIR := install -m 755 -d
PYTHON_OPTS =
ifneq ($(DESTDIR),)
PYTHON_OPTS += --root $(DESTDIR)
endif
all: test
clean:
$(RM) -r build
$(RM) -r tiramisu.egg-info/
test: clean
py.test
install:
python setup.py install --no-compile $(PYTHON_OPTS)
.PHONY: all clean test install