chiark / gitweb /
helixish: debugging output
[moebius3.git] / Makefile
index d0075d8bfae41b472afeabf34b4102fc41a9b7d9..5794c98e4e6a9b145f87187d0738aceef37e4563 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,16 +1,35 @@
 
-all: moebius-core.scad
+all: moebius-core.scad moebius-mesh.scad
 
 PLAY = /home/reprap/play
 USING_AUTOS = moebius
 
+COPTIMISE = -O2
+CDEBUG = -g
+CWARNINGS = -Wall -Wwrite-strings -Wshadow -Wextra -Wno-unused-parameter
+CFLAGS = $(COPTMISE) $(CWARNINGS) $(CDEBUG)
+
 $(shell set -xe; $(PLAY)/commitid.scad.pl >commitid.scad.tmp; cmp commitid.scad.tmp commitid.scad || mv -f commitid.scad.tmp commitid.scad )
 
-moebius-core.scad: genscad moebius.py
+PYLIBS = $(shell echo *.py)
+
+moebius-core.scad: genscad $(PYLIBS)
+               ./$< >$@.tmp && mv -f $@.tmp $@
+
+moebius-mesh.scad: meshscad $(PYLIBS)
                ./$< >$@.tmp && mv -f $@.tmp $@
 
 AUTO_TOPLEVELS := $(foreach m,$(USING_AUTOS),$(shell $(PLAY)/toplevel-find $m))
 
+symbolic.c:    gensymbolic symbolic.py
+               ./gensymbolic -q >$@.tmp && mv -f $@.tmp $@
+
+findcurve.o:   findcurve.c symbolic.c
+
+GSL_LIBS := $(shell pkg-config --libs gsl)
+
+findcurve:     findcurve.o $(GSL_LIBS)
+
 autoincs:      $(AUTO_INCS)
 scads:         $(addsuffix .auto.scad, $(AUTO_TOPLEVELS))
 stls:          $(addsuffix .auto.stl, $(AUTO_TOPLEVELS))