all: single mmap

CFLAGS = -O2 -I../..

single: single.c
	gcc $(CFLAGS) single.c -o single

mmap: mmap.c
	gcc $(CFLAGS) mmap.c -o mmap

