1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-08-13 16:53:59 -04:00
Simba/Doc/Pics/Makefile
2009-10-07 08:22:28 +00:00

28 lines
353 B
Makefile

.PHONY: default clean
files := Client_Classes FindColor Input_Diag Window DTM
build = dot $(1).dot -Tpng > $(1).png
default: dotit
clean:
rm -f *.png
dotit: $(files)
Client_Classes:
$(call build,Client_Classes)
FindColor:
$(call build,FindColor)
Input_Diag:
$(call build,Input_Diag)
Window:
$(call build,Window)
DTM:
$(call build,DTM)