CC = gcc
CFLAGS = -Wall -O2 --std=gnu99 -I../../include

all: makefile master

master: makefile master.c
	$(CC) $(CFLAGS) -o master master.c
