mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 08:34:42 +08:00
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
|
||
|
|
|