# Makefile for 67_cooley-tukey-fft
#
# TODO: Fill in all fields marked with ??? and implement the build rules.
#       Link with -lm for math library (cos, sin, M_PI).
#       完成后删除本 TODO 行。

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

all: $(TARGET)

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

clean:
	rm -f $(TARGET)

.PHONY: all  clean
