# a few flags, better is inherited
CFLAGS = -O -Wall

all: probe.o

%.o: %.c
	$(CC) $(CFLAGS) -I. -c $<


clean:
	rm -f *.o *.a *~ core
