all: roman_flex.c
	flex roman_flex.c
	gcc lex.yy.c -lfl -o roman_flex
test: all
	./roman_flex < example.txt
clean: 
	rm lex.yy.c roman_flex *.core
