X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=Makefile;h=01259e9d43799ed95b2eec635e28a1febef16ef1;hb=b8c758109a74acfedf42212a47497d750590d911;hp=c891dd92906f4df4b65c9b4ceb41da35bc561c0c;hpb=380ba25c38651c7bbbe6bbefe5091e3b8fd9b1b4;p=melted diff --git a/Makefile b/Makefile index c891dd9..01259e9 100644 --- a/Makefile +++ b/Makefile @@ -11,18 +11,17 @@ SUBDIRS = src/framework \ all clean depend: list='$(SUBDIRS)'; \ for subdir in $$list; do \ - $(MAKE) -C $$subdir $@; \ + $(MAKE) -C $$subdir $@ || exit 1; \ done dist-clean: rm mlt-config packages.dat; \ list='$(SUBDIRS)'; \ for subdir in $$list; do \ - $(MAKE) -C $$subdir $@; \ + $(MAKE) -C $$subdir $@ || exit 1; \ done; \ rm config.mak; - install: install -d "$(prefix)/bin" install -d "$(prefix)/include" @@ -34,6 +33,6 @@ install: install -m 644 packages.dat "$(prefix)/share/mlt/" list='$(SUBDIRS)'; \ for subdir in $$list; do \ - $(MAKE) -C $$subdir $@; \ + $(MAKE) -C $$subdir $@ || exit 1; \ done; \ /sbin/ldconfig || true