Files
csapp2025/profile/Makefile
2025-04-12 10:18:45 +08:00

24 lines
386 B
Makefile

# Makefile for word frequency analysis program
CC = icx
CFLAGS = -Ofast -pg
TARGET = prog
SOURCES = prog.c options.c
all: $(TARGET)
$(TARGET): $(SOURCES)
$(CC) $(CFLAGS) $(SOURCES) -o $(TARGET)
run: $(TARGET)
./$(TARGET) -file shakespeare.txt
profile: $(TARGET)
./$(TARGET) -file shakespeare.txt
gprof $(TARGET)
clean:
rm -f $(TARGET) gmon.out
.PHONY: all run profile clean