Done in one go xP

This commit is contained in:
stitchy 2023-11-29 20:33:45 +00:00
parent f6a18f46da
commit 9aa7973d2f
Signed by: stitchy
SSH key fingerprint: SHA256:yz2SoxdnY67tfY5Jzb0f2v8f5W3o/IF359kbcquWip8
3 changed files with 135 additions and 0 deletions

8
threads/makefile Normal file
View file

@ -0,0 +1,8 @@
CC=gcc --std=gnu99 -g
output=myCounter
all: main.c main.h
$(CC) main.c -o $(output)
clean:
rm -fr *.o vgcore.* $(output)