jart / hiptext

Turn images into text better than caca/aalib
Apache License 2.0
765 stars 44 forks source link

Makefile refers to src/pixel_parse.cc that doesn't exist #47

Closed yurivict closed 6 years ago

yurivict commented 6 years ago

src/pixel_parse.cc

jart commented 6 years ago

Behold! Our wildcard rule for Ragel.

src/%.cc: src/%.rl
    @echo "  RL      " $@;
    $(RAGEL) -G2 -o $@ $<

I'm proud to say I'm also a contributor to the Ragel project. Although I've sometimes wondered if it's leaky abstraction and we're better off just writing our state machines by hand using switch statements.