OS1/threads/makefile

12 lines
160 B
Makefile
Raw Normal View History

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