cs240/labs/lab12/Makefile
2018-10-15 17:20:57 -04:00

9 lines
134 B
Makefile

CC = gcc
OPTIONS = -Werror -Wall -std=c99 -g
all:
$(CC) $(OPTIONS) -o test_file test_file.c file.c
clean:
rm -f *.o *.out *.txt