13 lines
257 B
Makefile
13 lines
257 B
Makefile
# 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) -pthread
|
|
|
|
# Nettoyage des fichiers générés
|
|
clean:
|
|
rm -f $(TARGET)
|