# Makefile for 65_mark-sweep-gc
#
# TODO: Fill in all fields marked with ??? and implement the build rules.
#       完成后删除本 TODO 行。

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

all: $(TARGET)

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

clean:
	???

.PHONY: all  clean
