mirror of
https://github.com/mist-devel/mist-board.git
synced 2026-01-13 15:17:39 +00:00
11 lines
237 B
Makefile
11 lines
237 B
Makefile
APP=ESCParser
|
|
SRC=Drivers.cpp ESCParser.cpp Interpreter.cpp RobotronFont.cpp
|
|
EXAMPLE=screenshot
|
|
|
|
$(APP): $(SRC)
|
|
|
|
test: $(APP)
|
|
./$(APP) -svg $(EXAMPLE).esc > $(EXAMPLE).svg
|
|
convert $(EXAMPLE).svg $(EXAMPLE).gif
|
|
display $(EXAMPLE).gif
|