chiark / gitweb /
helixish: debugging output
[moebius3.git] / Makefile
index f6c672a95954ae4066680bd77c2bd7a9bfe1b083..5794c98e4e6a9b145f87187d0738aceef37e4563 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,14 @@
 
-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 )
 
 PYLIBS = $(shell echo *.py)
@@ -11,8 +16,20 @@ 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))