Skip to content

Commit

Permalink
Looks like there is a true difference between "make -c foo" and "cd f…
Browse files Browse the repository at this point in the history
…oo && make"
  • Loading branch information
thopiekar committed Jan 25, 2015
1 parent 930041a commit 70322ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ ios:
cp -R "iosbuild/usr/local/lib/python2.7/site-packages/kivy" "$(BUILDROOT)/python/lib/python2.7/site-packages"

pdf: prebuild
$(MAKE) -C doc pdf
cd doc && $(MAKE) pdf

html: prebuild
$(MAKE) -C doc html
cd doc && $(MAKE) html

html-embedded:
env USE_EMBEDSIGNATURE=1 $(MAKE) force
Expand Down

0 comments on commit 70322ed

Please sign in to comment.