0aed29460d
- split notification applet git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@2257 cd1c1023-2f26-0410-ae45-c471fc1f0318
19 lines
443 B
Makefile
19 lines
443 B
Makefile
PYTHON=python
|
|
PACKAGE = $(shell basename `pwd`)
|
|
PYFILES = $(wildcard *.py)
|
|
PKGDIR = /usr/lib/entropy/spritz/applet
|
|
|
|
all:
|
|
echo "Nothing to do"
|
|
|
|
clean:
|
|
rm -f *.pyc *.pyo *~
|
|
|
|
install:
|
|
mkdir -p $(DESTDIR)/$(PKGDIR)
|
|
for p in $(PYFILES) ; do \
|
|
install -m 755 $$p $(DESTDIR)/$(PKGDIR)/$$p; \
|
|
done
|
|
install -m 644 *.glade $(DESTDIR)/$(PKGDIR)
|
|
$(PYTHON) -c "import compileall; compileall.compile_dir('$(DESTDIR)/$(PKGDIR)', 1, '$(PYDIR)', 1)"
|