init
This commit is contained in:
13
Makefile
Normal file
13
Makefile
Normal file
@@ -0,0 +1,13 @@
|
||||
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
|
||||
Reference in New Issue
Block a user