home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 June / ccd0605.iso / LINUX / gopchop-1.1.7.tar.tar / gopchop-1.1.7.tar / gopchop-1.1.7 / src / Makefile.am < prev    next >
Makefile  |  2005-04-30  |  2KB  |  64 lines

  1. ## Process this file with automake to produce Makefile.in
  2.  
  3. # I want to do something like this...(so that .cpp is checked before .c)
  4. #.SUFFIXES: .cpp .c .o
  5.  
  6. INCLUDES = \
  7.         -DPACKAGE_DATA_DIR=\""$(datadir)"\" \
  8.         -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
  9.     @PACKAGE_CFLAGS@ \
  10.     @INCLUDES@
  11.  
  12. bin_PROGRAMS = gopchop mpegcat gtkspu
  13. EXTRA_PROGRAMS = m2parse
  14.  
  15. gopchop_SOURCES = \
  16.     Main.cpp main.h \
  17.     support.c support.h \
  18.     interface.c interface.h \
  19.     mpeg2consts.c mpeg2consts.h \
  20.     callbacks.cpp callbacks.h    \
  21.     rc.c rc.h \
  22.     display.h display.cpp \
  23.     GOPutils.cpp GOPutils.h \
  24.     Vector.cpp Vector.h \
  25.     Bounds.cpp Bounds.h \
  26.     Pack.cpp Pack.h \
  27.     ElementStream.cpp ElementStream.h \
  28.     GroupOfPictures.cpp GroupOfPictures.h \
  29.     List.cpp List.h \
  30.     Picture.cpp Picture.h \
  31.     Parser.cpp Parser.h \
  32.     FirstPack.cpp FirstPack.h \
  33.     widgets.h widgets.cpp \
  34.     sessions.h sessions.cpp \
  35.     MPEG2Parser.cpp MPEG2Parser.h mpeg2structs.h
  36.  
  37. gopchop_LDADD = @PACKAGE_LIBS@ \
  38.         $(top_builddir)/libvo/libvo.a @LIBVO_LIBS@ \
  39.     $(INTLLIBS)
  40.  
  41. m2parse_SOURCES = \
  42.     m2parse.cpp \
  43.     Vector.cpp Vector.h \
  44.     Bounds.cpp Bounds.h \
  45.     Pack.cpp Pack.h \
  46.     ElementStream.cpp ElementStream.h \
  47.     GroupOfPictures.cpp GroupOfPictures.h \
  48.     List.cpp List.h \
  49.     Picture.cpp Picture.h \
  50.     Parser.cpp Parser.h \
  51.     MPEG2Parser.cpp MPEG2Parser.h mpeg2structs.h \
  52.     FirstPack.cpp FirstPack.h
  53.  
  54. mpegcat_SOURCES = \
  55.     mpeg2consts.c mpeg2consts.h \
  56.     file_buffer.c file_buffer.h \
  57.     mpegcat.c mpeg2structs.h
  58.  
  59. gtkspu_SOURCES = \
  60.     file_buffer.c file_buffer.h \
  61.     gtkspu.c
  62. gtkspu_LDADD = @PACKAGE_LIBS@ \
  63.     $(INTLLIBS)
  64.