Files
cae-tools/ptrude/Makefile
T

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)