8ecdcc7172
Add "V=No" to the make command to silence the make output. This makes it easier to spot warnings or other unexpected messages in the build output.
17 lines
632 B
Makefile
17 lines
632 B
Makefile
H264DEC_SRCDIR=codec/console/dec
|
|
H264DEC_CPP_SRCS=\
|
|
$(H264DEC_SRCDIR)/./src/d3d9_utils.cpp\
|
|
$(H264DEC_SRCDIR)/./src/h264dec.cpp\
|
|
$(H264DEC_SRCDIR)/./src/read_config.cpp\
|
|
|
|
H264DEC_OBJS += $(H264DEC_CPP_SRCS:.cpp=.o)
|
|
OBJS += $(H264DEC_OBJS)
|
|
$(H264DEC_SRCDIR)/%.o: $(H264DEC_SRCDIR)/%.cpp
|
|
$(QUIET_CXX)$(CXX) $(CFLAGS) $(CXXFLAGS) $(INCLUDES) $(H264DEC_CFLAGS) $(H264DEC_INCLUDES) -c $(CXX_O) $<
|
|
|
|
h264dec$(EXEEXT): $(H264DEC_OBJS) $(LIBS) $(H264DEC_LIBS) $(H264DEC_DEPS)
|
|
$(QUIET_CXX)$(CXX) $(CXX_LINK_O) $(H264DEC_OBJS) $(H264DEC_LDFLAGS) $(H264DEC_LIBS) $(LDFLAGS) $(LIBS)
|
|
|
|
binaries: h264dec$(EXEEXT)
|
|
BINARIES += h264dec$(EXEEXT)
|