28 lines
371 B
Makefile
28 lines
371 B
Makefile
if !WITHOUT_FFMPEG
|
|
if !SYSTEM_FFMPEG
|
|
all-local:
|
|
cd ffmpeg && $(MAKE)
|
|
if WINDOWS
|
|
cp ffmpeg/*/*.dll ..
|
|
endif
|
|
endif
|
|
|
|
del-dlls:
|
|
if WINDOWS
|
|
rm -f ../*.dll
|
|
endif
|
|
|
|
install:
|
|
cd ffmpeg && $(MAKE) install-libs
|
|
|
|
uninstall:
|
|
cd ffmpeg && $(MAKE) uninstall-libs
|
|
|
|
clean-local: del-dlls
|
|
cd ffmpeg && $(MAKE) clean
|
|
|
|
distclean-local: del-dlls
|
|
cd ffmpeg && $(MAKE) distclean
|
|
endif
|
|
|