CC=gcc
CFLAGS=-Wall -std=gnu99 
EXT=
PROG=tcl-dox$(EXT)
LEX=flex


.PHONY: all clean

all: $(PROG)

clean:
	rm -f $(PROG) $(OBJ)