CC=gcc -pipe
INCLUDE=
LIBS=


CFLAGS= -Wall $(INCLUDE) -O3 -funroll-loops  

all: graspforth

graspforth: graspforth.o
	$(CC) $(CFLAGS) -o graspforth graspforth.o

clean:
	rm -rf graspforth *.o

# Dependencies

graspforth.o: graspforth.c

