Commit 46b75a3d authored by lode_leroy's avatar lode_leroy

git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@14 bbaffbd6-741e-11dd-a85d-61de82d9cad9
parent 406b32f2
BRLCAD=/opt/brlcad/bin
BRLCAD=c:/Software/BRL-CAD/bin
MGED=$(BRLCAD)/mged
G-STL=$(BRLCAD)/g-stl
VER=0.1.4
all:
.PHONY: dist
dist:
(cd ..; tar zcf pycam/pycam.tgz pycam/*{Makefile,TXT} pycam/*.py pycam/tests/*.py pycam/pycam/*/*.py pycam/pycam/*.py pycam/Samples/*/*.stl)
dist-ver:
(cd ..; tar zcf pycam-$(VER)/pycam-$(VER).tgz pycam-$(VER)/*{Makefile,TXT} pycam-$(VER)/*.py pycam-$(VER)/tests/*.py pycam-$(VER)/pycam/*/*.py pycam-$(VER)/pycam/*.py pycam-$(VER)/Samples/*/*.stl)
test:
rm -f test.g; $(MGED) test.g < test.txt; $(MGED) test.g
test0:
rm -f test.g; $(MGED) test.g < cutter0.txt; $(MGED) test.g
test1:
rm -f test.g; $(MGED) test.g < cutter1.txt; $(MGED) test.g
test2:
rm -f test.g; $(MGED) test.g < cutter2.txt; $(MGED) test.g
test3:
rm -f test.g; $(MGED) test.g < cutter3.txt; $(MGED) test.g
TestModel.stl:
./Tests/MGEDExporterTest.py
rm -f TestModel.g
$(MGED) TestModel.g < TestModel.txt
$(G-STL) -o TestModel.stl TestModel.g model0
__all__ = [ "Utils", "Geometry", "Cutters", "PathGenerators", "PathProcessors", "Importers", "Exporters", "Gui"]
import pycam.Utils
import pycam.Geometry
import pycam.Cutters
import pycam.PathGenerators
import pycam.PathProcessors
import pycam.Importers
import pycam.Exporters
import pycam.Gui
__all__=["Cutters","Exporters","Geometry","Gui","Importers","PathGenerators","PathProcessors","Utils"]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment