diff options
Diffstat (limited to 'src/libmpeg2/Makefile.am')
-rw-r--r-- | src/libmpeg2/Makefile.am | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/libmpeg2/Makefile.am b/src/libmpeg2/Makefile.am new file mode 100644 index 000000000..a7031295c --- /dev/null +++ b/src/libmpeg2/Makefile.am @@ -0,0 +1,23 @@ +CFLAGS = @BUILD_LIB_STATIC@ @LIBMPEG2_CFLAGS@ @GLOBAL_CFLAGS@ + +EXTRA_DIST = idct_mlib.c idct_mlib.h motion_comp_mlib.c + +noinst_LTLIBRARIES = libmpeg2.la + +#libmpeg2_la_SOURCES = slice.c header.c stats.c idct.c motion_comp.c\ +# decode.c idct_mmx.c motion_comp_mmx.c +libmpeg2_la_SOURCES = slice.c header.c stats.c idct.c motion_comp.c\ + decode.c idct_mmx.c motion_comp_mmx.c + +noinst_HEADERS = vlc.h mpeg2.h mpeg2_internal.h + +debug: + $(MAKE) CFLAGS="$(DEBUG_CFLAGS) @BUILD_LIB_STATIC@" + +mostlyclean-generic: + -rm -f *~ \#* .*~ .\#* + +maintainer-clean-generic: + -@echo "This command is intended for maintainers to use;" + -@echo "it deletes files that may require special tools to rebuild." + -rm -f Makefile.in |