Files
MiniProjet1/lru/Makefile

14 lines
229 B
Makefile

# Nom de l'exécutable
TARGET = cache_simulator
# Fichier source
SRC = cache_lru.c
# Règle par défaut : compilation et lien
all:
gcc $(SRC) -o $(TARGET) -lm -Wall
# Nettoyage des fichiers générés
clean:
rm -f $(TARGET)