makefile 중 이해가 안되는 부분이 있어서 이를 해결 하고자 님들에게 질문을 드립니다.
makefile------------------------------
.SUFFIXES : .cpp .o
CXX = g++
INC = -I/usr/local/include/boost-1_37
LIBS = -L/usr/local/lib/ -lboost_regex-gcc42-mt-1_37
LINK = g++
CXXFLAGS = -c $(INC)
OBJS = boostTest.o
SRCS = boostTest.cpp
TARGET = boostTest
.cpp.o:
$