26 lines
470 B
Makefile
26 lines
470 B
Makefile
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
bindir = @bindir@
|
|
datadir = @datadir@/@PACKAGE@
|
|
INSTALL = @INSTALL@
|
|
plugins = ${datadir}/plugins
|
|
srcdir = @top_srcdir@
|
|
pycomp = ${srcdir}/py-compile
|
|
|
|
@SET_MAKE@
|
|
|
|
all:
|
|
${pycomp} *.py
|
|
|
|
|
|
install:
|
|
${INSTALL} -d ${plugins}
|
|
${INSTALL} *.py *.pyo *.glade ${plugins}
|
|
|
|
uninstall:
|
|
rm ${plugins}/*.py ${plugins}/*.pyo ${plugins}/*.glade ${plugins}/*.xpm
|
|
-rmdir ${plugins}
|
|
|
|
clean:
|
|
-rm -f core *.pyo *.pyc *.bak *~
|