* Makefile.am: * NEWS: * TODO: * autogen.sh: * configure.ac: * examples/ARcalibrate.py: * misc/Makefile.am: * misc/morituri-uninstalled: * morituri.spec.in: * morituri/Makefile.am: * morituri/common/Makefile.am: * morituri/common/logcommand.py: * morituri/extern/Makefile.am: * morituri/rip/Makefile.am: * morituri/rip/__init__.py: * morituri/rip/main.py: * morituri/test/Makefile: * morituri/test/Makefile.am: * configure.ac (added): * AUTHORS (added): * morituri.spec.in (added): * Makefile.am (added): * morituri/test/Makefile.am (added): * morituri/extern/Makefile.am (added): * morituri/common/logcommand.py (added): * morituri/common/Makefile.am (added): * morituri/Makefile.am (added): * morituri/rip (added): * morituri/rip/__init__.py (added): * morituri/rip/Makefile.am (added): * morituri/rip/main.py (added): * misc/Makefile.am (added): * misc/morituri-uninstalled (added): * autogen.sh (added): * NEWS (added): Start autotooling. Add a command-line application.
42 lines
1004 B
Makefile
42 lines
1004 B
Makefile
# version first -- they are parsed LTR and later options depend on automake 1.8
|
|
AUTOMAKE_OPTIONS = 1.8 dist-bzip2 no-dist-gzip
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
SUBDIRS = bin etc morituri doc m4 misc
|
|
|
|
EXTRA_DIST = HACKING morituri.spec morituri.doap RELEASE
|
|
|
|
check: pychecker check-python check-bash
|
|
|
|
check-python:
|
|
trial morituri.test
|
|
|
|
check-bash:
|
|
$(SHELL) $(top_srcdir)/morituri/test/test_bash_completion.sh $(top_builddir)/etc/bash_completion.d/morituri
|
|
|
|
_trial_temp/coverage: $(top_srcdir)/morituri/*.py $(top_srcdir)/morituri/*/*.py
|
|
trial --coverage morituri.test
|
|
|
|
coverage: _trial_temp/coverage
|
|
python misc/show-coverage.py `ls _trial_temp/coverage/morituri* | grep -v morituri.test | grep -v morituri.extern`
|
|
|
|
clean-local:
|
|
@rm -rf _trial_temp
|
|
|
|
PYCHECKER_WHITELIST = \
|
|
morituri/*.py \
|
|
morituri/*/*.py
|
|
|
|
PYCHECKER_BLACKLIST = \
|
|
morituri/extern/asyncsub.py
|
|
|
|
release: dist
|
|
make $(PACKAGE)-$(VERSION).tar.bz2.md5
|
|
|
|
# generate md5 sum files
|
|
%.md5: %
|
|
md5sum $< > $@
|
|
|
|
include $(top_srcdir)/m4/pychecker.mk
|