Ajouts de thread + modifications

This commit is contained in:
2024-12-04 09:45:21 +01:00
parent 5a8540b2da
commit d6de89853a
5 changed files with 384 additions and 3 deletions

13
SecuredThread/Makefile Normal file
View File

@@ -0,0 +1,13 @@
# Nom de l'exécutable
TARGET = secured_transaction_threads
# Fichier source
SRC = secured_transaction_threads.c
# Règle par défaut : compilation et lien
all:
gcc $(SRC) -o $(TARGET)
# Nettoyage des fichiers générés
clean:
rm -f $(TARGET)