CDEBUGFLAGS=-g
CC=gcc -Wall -Wstrict-prototypes
CFLAGS=$(CDEBUGFLAGS)

formula: main.o execute.o
	$(CC) -o $@ main.o execute.o
