Skip to content
This repository was archived by the owner on Oct 10, 2020. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ SYSCONFDIR ?= $(DESTDIR)/etc/sysconfig
PROFILEDIR ?= $(DESTDIR)/etc/profile.d
PYTHON ?= /usr/bin/python

all: python-build

test:
sh ./test.sh

all: python-build

python-build: atomic
$(PYTHON) setup.py build
pylint -E --additional-builtins _ atomic
Expand All @@ -17,7 +17,7 @@ clean:
$(PYTHON) setup.py clean
-rm -rf build *~ \#* *pyc .#*

install: test all
install: all
$(PYTHON) setup.py install `test -n "$(DESTDIR)" && echo --root $(DESTDIR)`
[ -d $(SYSCONFDIR) ] || mkdir -p $(SYSCONFDIR)
install -m 644 atomic.sysconfig $(SYSCONFDIR)/atomic
Expand Down