Makefile 347 Bytes
Newer Older
1 2 3
PYTHONROOT=$(DESTDIR)/usr/local/bin
OWN = -o root -g root
INSTPYTHON = 0755
4
#INSTALL = install
5 6 7 8 9 10 11 12 13 14 15
PYTHON_SCRIPTS = tests.py

all:
	@echo "make all in python_tests"

install:
	@echo "make install in python_tests"
	$(INSTALL) $(OWN) -d $(PYTHONROOT)
	$(INSTALL) $(OWN) -m $(INSTPYTHON) $(PYTHON_SCRIPTS) $(PYTHONROOT)
clean:
	@echo "make clean in src"