Files
itgmania212121/bundle/Makefile.am
T

22 lines
277 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
clean-local: del-dlls
cd ffmpeg && $(MAKE) clean
distclean-local: del-dlls
cd ffmpeg && $(MAKE) distclean
endif