Files
ostep-code/intro/Makefile
2018-08-15 11:52:29 -05:00

19 lines
278 B
Makefile

all: cpu mem threads io
clean:
rm -f cpu mem threads io
cpu: cpu.c common.h
gcc -o cpu cpu.c -Wall
mem: mem.c common.h
gcc -o mem mem.c -Wall
threads: threads.c common.h common_threads.h
gcc -o threads threads.c -Wall -pthread
io: io.c common.h
gcc -o io io.c -Wall