1
0
mirror of git://projects.qi-hardware.com/cae-tools.git synced 2024-12-23 04:58:38 +02:00
cae-tools/ptrude/Makefile
2011-07-28 22:31:25 -03:00

14 lines
152 B
Makefile

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)