mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-23 17:33:23 +00:00
10 lines
156 B
Makefile
10 lines
156 B
Makefile
.PHONY: build clean run
|
|
|
|
build: pthread_test.c
|
|
@gcc -static pthread_test.c -lpthread -o pthread_test
|
|
|
|
clean:
|
|
@rm pthread_test
|
|
|
|
run: build
|
|
@./pthread_test
|