cs240/hw/hw6/HW6-src-update/task2/Makefile
2018-10-15 17:20:57 -04:00

12 lines
143 B
Makefile
Executable File

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