# GNU gcc compiler
CFLAGS = -pedantic -g -fopenmp -Wall -I../../include 
CC = g++

sim:
	${CC} ${CFLAGS} circuit.cpp

clean:
	rm -f a.out data
