当我运行siftDemoV4
的代码时,我收到以下错误:
make'匹配'是最新的
这有什么问题?我知道Makefile
:
# ------------------ Compilation options ------------------------
# Loads math library.
LIBS = -lm
# Flags for the C compiler:
# -Wall for strict gcc warnings (requires prototypes for all functions).
# -g to produce debug data for gdb
# -O for optimization
CFLAGS = -Wall -g
CC = gcc
# --------------------- Code modules ----------------------------
# Object files
OBJ = match.o util.o
# Definitions
DEFS = defs.h
# ------------------------ Rules --------------------------------
match: ${OBJ}
${CC} -o $@ ${CFLAGS} ${OBJ} ${LIBS}
# Implicit rule used by Gnu Make: $(CC) -c $(CPPFLAGS) $(CFLAGS)
${OBJ}: ${DEFS}