diff options
Diffstat (limited to 'tools/depends/target/ffmpeg/Makefile')
-rw-r--r-- | tools/depends/target/ffmpeg/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/depends/target/ffmpeg/Makefile b/tools/depends/target/ffmpeg/Makefile index 651abfcd98..b20c82689e 100644 --- a/tools/depends/target/ffmpeg/Makefile +++ b/tools/depends/target/ffmpeg/Makefile @@ -85,10 +85,11 @@ ifeq ($(OS), ios) cd $(PLATFORM); sed -i -- 's/HAVE_CLOCK_GETTIME 1/HAVE_CLOCK_GETTIME 0/g' config.h endif -build: $(PLATFORM) +.build-$(PLATFORM): $(PLATFORM) $(MAKE) -C $(PLATFORM) + touch $@ -.installed-$(PLATFORM): build +.installed-$(PLATFORM): .build-$(PLATFORM) $(MAKE) -C $(PLATFORM) install touch $@ |