Files
2025-02-11 22:04:18 -05:00

8 lines
90 B
Makefile

build:
$(CC) -o main thread-test.c -O3 -pthread
clean:
rm -f main
.PHONY: build clean