cs240/labs/lab12/Makefile

9 lines
134 B
Makefile
Raw Normal View History

2018-10-15 17:20:57 -04:00
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