Files
asterinas/regression/apps/pthread/Makefile
2023-04-10 14:49:39 +08:00

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