CFLAGS = -Wall -std=c11
CFLAGS += -DNDEBUG
LDLIBS = -lm
CC = ~efb23/gcc/bin/gcc

default: t

t: t.o bar.o

t.o: trace.h

clean:
	$(RM) t *.o
