ptrude/: path extrusion, work in progress

This commit is contained in:
Werner Almesberger
2011-07-28 22:31:25 -03:00
parent 4ae218c6dc
commit d4c96f129d
8 changed files with 574 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
CFLAGS = -Wall -g
LDFLAGS = -lm
OBJS = ptrude.o path.o
.PHONY: clean try
ptrude: $(OBJS)
try: ptrude
./ptrude <try | tee out
clean:
rm -f $(OBJS)