summaryrefslogtreecommitdiffstats
path: root/installclasses/Makefile
blob: 6dd6a4c2cdc47247bb14b2d99b02481ce3308375 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

include ../Makefile.inc

ifeq (i386, $(ARCH))
CLASSES = $(shell ls *.py)
else
CLASSES = $(shell ls *.py | grep -v laptop)
endif

all:
	echo "nothing to make"

install: 
	mkdir -p $(DESTDIR)/$(PYTHONLIBDIR)/installclasses
	install $(CLASSES) $(DESTDIR)/$(PYTHONLIBDIR)/installclasses
	../py-compile --basedir $(DESTDIR)/$(PYTHONLIBDIR)/installclasses $(DESTDIR)/$(PYTHONLIBDIR)/installclasses/*.py

clean:
	rm -f *.o *.so *.pyc

depend: