mirror of
git://projects.qi-hardware.com/cae-tools.git
synced 2024-12-23 04:58:38 +02:00
14 lines
152 B
Makefile
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)
|