12 lines
114 B
Makefile
12 lines
114 B
Makefile
.PHONY := all yeet
|
|
|
|
all: build run
|
|
|
|
build:
|
|
gcc -o depth depth.c
|
|
gcc -o depth2 depth2.c
|
|
|
|
run:
|
|
./depth
|
|
./depth2
|