Files
seer/tests/hellozig/Makefile
T
Ernie Pasveer 3a0aecd81e Add a ZIG test program.
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.
2024-10-12 10:54:33 -05:00

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