mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-08 22:13:17 +00:00
- Introduce new `Path` type and an array of build paths on the build context. - Resolve input and output paths/files early (before parsing). - Error early if inputs are missing or outputs are directories. - Plumb new file path generation into linker stage instead of its adhoc method. TODO: - Remove more adhoc file path generation in parser and linker stage. - Make intermediate object file generation use new path system. - Round out and robustify Path helper functions.
20 lines
218 B
Makefile
20 lines
218 B
Makefile
all: debug
|
|
|
|
demo:
|
|
./odin run examples/demo
|
|
|
|
report:
|
|
./odin report
|
|
|
|
debug:
|
|
./build_odin.sh debug
|
|
|
|
release:
|
|
./build_odin.sh release
|
|
|
|
release_native:
|
|
./build_odin.sh release-native
|
|
|
|
nightly:
|
|
./build_odin.sh nightly
|