# Makefile for 72_ansi-terminal-calc
#
# TODO: Fill in all fields marked with ??? and implement the build rules.
#       完成后删除本 TODO 行。

CC      = ???
CFLAGS  = ???
TARGET  = ???
SRC     = ???

all: $(TARGET)

$(TARGET): $(SRC)
	???

clean:
	rm -f $(TARGET)

.PHONY: all  clean
