OS1/threads/makefile

12 lines
160 B
Makefile
Raw Normal View History

2023-11-29 12:33:45 -08:00
CC=gcc --std=gnu99 -g
output=myCounter
all: main.c main.h
2023-11-29 12:48:53 -08:00
$(CC) main.c -lpthread -o $(output)
2023-11-29 12:33:45 -08:00
2023-11-29 12:50:04 -08:00
run: all
./$(output)
2023-11-29 12:33:45 -08:00
clean:
rm -fr *.o vgcore.* $(output)