diff options
author | Matt Wilson <msw@redhat.com> | 2000-05-03 18:17:29 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-05-03 18:17:29 +0000 |
commit | 063ba8a6bf160c24f576d3259837c5c2545cd6a1 (patch) | |
tree | 4fbb1e1c51e35f41f419b1e923f57d3aeb487bfe /installclasses/Makefile | |
parent | 949528f9e703c7373d9e30510b76f8944b001138 (diff) | |
download | anaconda-063ba8a6bf160c24f576d3259837c5c2545cd6a1.tar.gz anaconda-063ba8a6bf160c24f576d3259837c5c2545cd6a1.tar.xz anaconda-063ba8a6bf160c24f576d3259837c5c2545cd6a1.zip |
added
Diffstat (limited to 'installclasses/Makefile')
-rw-r--r-- | installclasses/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/installclasses/Makefile b/installclasses/Makefile new file mode 100644 index 000000000..2f0f88bfa --- /dev/null +++ b/installclasses/Makefile @@ -0,0 +1,12 @@ +include ../Makefile.inc + +all: + echo "nothing to make" + +install: + mkdir -p $(DESTDIR)/$(PYTHONLIBDIR)/installclass + install *.py $(DESTDIR)/$(PYTHONLIBDIR)/installclass + ../py-compile --basedir $(DESTDIR)/$(PYTHONLIBDIR)/installclass $(DESTDIR)/$(PYTHONLIBDIR)/installclass/*.py + +clean: + rm -f *.o *.so *.pyc |