mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
3a0aecd81e
The zig compiler is way behing on opensuse. I tried building zig from source but encountered many compile errors. I'll wait until opensuse is updated.
17 lines
313 B
Makefile
17 lines
313 B
Makefile
.PHONY: all
|
|
all: hello-world assignment integers
|
|
|
|
hello-world: hello-world.zig
|
|
zig build-exe -O Debug hello-world.zig
|
|
|
|
assignment: assignment.zig
|
|
zig build-exe -O Debug assignment.zig
|
|
|
|
integers: integers.zig
|
|
zig build-exe -O Debug integers.zig
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f *.o hello-world assignment integers
|
|
|