chiark / gitweb /
viewdims variable
[moebius2.git] / Makefile
index af7486da4c0eed0e80cd6e0938b21495db05d6cc..9c82be7b10a0e3dc4eff139e1a01b0ade6d3fe8f 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,8 @@
 
-TARGETS= minimise primer view lumpy.cfm sgtatham.cfm ring.cfm
+
+VIEWDIMS=33 44 55
+TARGETS= minimise primer lumpy.cfm sgtatham.cfm ring.cfm \
+       $(addprefix view+, $(VIEWDIMS))
 SGTATHAM=sgtatham
 
 CWARNS=        -Wall -Wwrite-strings -Wpointer-arith -Werror -Wshadow
@@ -24,8 +27,6 @@ primer:               primer.o common.o
 prime.data:    primer
                ./$^ $o
 
-view:          view.o common.o mgraph.o
-               $(CC) $(CFLAGS) -o $@ $^ $(LIBGSL) -L/usr/X11R6/lib -lX11
 
 sgtatham.cfm:  sgtatham-regenerator prime.data $(SGTATHAM)/z.typescript
                ./$^ -T -o$@
@@ -36,6 +37,21 @@ lumpy.cfm: oldmoebius-converter prime.data ../moebius/ins-new ../moebius/a.out
 ring.cfm: oldmoebius-converter prime.data /dev/null ../moebius/a.out
                ./$^ -o$@
 
+
+# this ridiculous repetition is due to make being too lame
+
+view+%:                view+%.o mgraph+%.o common.o
+               $(CC) $(CFLAGS) -o $@ $^ $(LIBGSL) -L/usr/X11R6/lib -lX11
+
+view+%.o:      view.c
+               $(CC) -c $(CPPFLAGS) $(CFLAGS) -DDEFBITS=$* $< -o $@
+
+mgraph+%.o:    mgraph.c
+               $(CC) -c $(CPPFLAGS) $(CFLAGS) -DDEFBITS=$* $< -o $@
+
+.PRECIOUS: view+%.o mgraph+%.o
+
+
 clean:
                rm -f prime.data $(TARGETS)
                rm -f *.o *.new *.tmp *.rej *.orig core vgcore.* *~
@@ -43,6 +59,5 @@ clean:
 
 realclean:     clean
                rm -f best
-               rm -rf dim,*
 
 -include *.d