# Compile cpp2html.c to produce cpp2html.o.
# Run the command
flex cppscanner.l
to produce the file lex.yy.c from the language description in cppscanner.l.
# Compile lex.yy.c to produce lex.yy.o. (This often produces a warning message about extra tokens. Ignore it.)
# Link the the .o files to produce an executable program named cpp2html
Here is the current makefile I have and I was told the commands are not correct: