- get rid of the applet from here, splitting... git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@2255 cd1c1023-2f26-0410-ae45-c471fc1f0318
14 lines
306 B
Makefile
14 lines
306 B
Makefile
PKGDIR = /usr/lib/entropy/spritz
|
|
|
|
all:
|
|
@../tools/py-compile *.py
|
|
|
|
clean:
|
|
rm -fv *.pyc *.pyo *~ *.bak *.gladep
|
|
rm -fv etpgui/*.pyc etpgui/*.pyo etpgui/*~
|
|
|
|
install:
|
|
mkdir -p $(DESTDIR)/usr/lib/entropy/spritz
|
|
install -m755 *.py $(DESTDIR)/$(PKGDIR)/.
|
|
install -m644 spritz.glade $(DESTDIR)/$(PKGDIR)/.
|