
CFLAGS = -g -Wall -O2 -lpthread

all:	oom-test

oom-test : oom-test.c
	$(CC) $(CFLAGS) -o $@ $^
	strip oom-test

clean:
	rm -f oom-test

