14 lines
308 B
Makefile
14 lines
308 B
Makefile
CC=gcc
|
|
CFLAGS=-std=c99 -Wall -pedantic -I/local/courses/csse2310/include -L/local/courses/csse2310/lib -lcsse2310a1
|
|
|
|
all: wordle
|
|
|
|
wordle: wordle.c wordle.h
|
|
$(CC) $(CFLAGS) -o $@ $^
|
|
|
|
wordle-debug: wordle.c wordle.h
|
|
$(CC) $(CFLAGS) -pg -fprofile-arcs -ftest-coverage -o $@ $^
|
|
|
|
clean:
|
|
rm wordle wordle-debug
|