#
# If you lack <sys/queue.h> and/or <sys/tree.h>, 
# uncomment the next line.
# DEF = -DNOQUEUE

CFLAGS = -Wall -O2 $(DEF)

all: wot

wot: wot.c
	$(CC) $(CFLAGS) -c wot.c
	$(CC) $(LDFLAGS) -o wot wot.o -lm

clean:
	rm -f wot wot.o
