mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 13:41:13 +00:00
8 lines
123 B
Makefile
8 lines
123 B
Makefile
all: clean build
|
|
|
|
clean:
|
|
rm -f *.o
|
|
rm -f concurrency1
|
|
|
|
build:
|
|
gcc main.c mt19937ar.h -o concurrency1 -std=c99 -pthread
|