This commit is contained in:
2024-03-14 23:02:57 +05:30
parent 0b4e007694
commit 2da6c57302
24 changed files with 1348 additions and 0 deletions

7
NFC/compile.sh Normal file
View File

@@ -0,0 +1,7 @@
gcc -g -c glthread/glthread.c -o glthread/glthread.o
gcc -g -c notif.c -o notif.o
gcc -g -c rtm_publisher.c -o rtm_publisher.o
gcc -g -c rt.c -o rt.o
gcc -g -c threaded_subsciber.c -o threaded_subsciber.o
gcc -g rtm_publisher.o threaded_subsciber.o rt.o notif.o glthread/glthread.o -o main.exe -lpthread
rm *.o glthread/*.o