Makefile 603 B

12345678910111213141516171819202122
  1. # XXX no dependency on .h, but better than nothing at all
  2. SRCS = 608.cpp 608_helpers.cpp 608_sami.cpp 608_srt.cpp 708.cpp \
  3. 708_encoding.cpp activity.cpp asf_functions.cpp avc_functions.cpp \
  4. bitstream.cpp ccextractor.cpp encoding.cpp es_functions.cpp \
  5. es_userdata.cpp file_functions.cpp general_loop.cpp myth.cpp \
  6. output.cpp params.cpp params_dump.cpp sequencing.cpp \
  7. stream_functions.cpp timing.cpp ts_functions.cpp
  8. PROG = ccextractor
  9. OBJS = ${SRCS:.cpp=.o}
  10. all: ${PROG}
  11. ${PROG}: ${OBJS}
  12. ${CXX} -o $@ ${CFLAGS} ${OBJS}
  13. .SUFFIXES: .cpp .o
  14. .cpp.o:
  15. ${CXX} -c ${CFLAGS} $*.cpp
  16. .PHONY: all