mirror of
https://github.com/ElliotKillick/windows-vs-linux-loader-architecture
synced 2026-06-08 10:57:32 +00:00
8 lines
90 B
Makefile
8 lines
90 B
Makefile
build:
|
|
$(CC) -o main thread-test.c -O3 -pthread
|
|
|
|
clean:
|
|
rm -f main
|
|
|
|
.PHONY: build clean
|