1234567891011121314151617181920212223242526272829 |
- # todo clean
- # make o hellope
- # for
- # odin run hellope.odin -file
- o:
- odin run $(filter-out $@,$(MAKECMDGOALS)).odin -file
- c:
- odin run .
- c2:
- odin build <dir>
- run:
- ./otest
- # ignore other - cause - make: *** No rule to make target 'hellope'. Stop.
- %:
- @:
- default: run
- .PHONY: c c2 run
|