OS1/threads/makefile

9 lines
127 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
$(CC) main.c -o $(output)
clean:
rm -fr *.o vgcore.* $(output)