CC=gcc
CFLAGS=-std=c99 -Wall -O3 -D_XOPEN_SOURCE -g

all: mmul

mmul: mmul.c
	$(CC) $(CFLAGS) -o mmul mmul.c

clean:
	rm -f mmul

