CC = gplc
CFLAGS = --fast-math --min-pl-bips --min-fd-bips --strip

# C-Compiler options
CFLAGS += -C -Ofast -C -funroll-all-loops -C -ffast-math

all:
	$(CC) $(CFLAGS) main.pl

run: all
	./main
