This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
libcdio-osx/Makefile
2008-11-28 08:58:37 -05:00

10 lines
154 B
Makefile

# Compatibility for us old-timers.
PHONY=check test dist
all: check
dist:
python ./setup.py sdist bdist
check:
nosetests
test: check
.PHONY: $(PHONY)