diff options
author | Måns Rullgård <mans@mansr.com> | 2009-10-31 15:58:49 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-10-31 15:58:49 +0000 |
commit | c73f65d979c41282ac52c5346f73489d12ce6a5a (patch) | |
tree | 4257e73e8e8fc69fe3723bb135c82dadfa7d96cf /Makefile | |
parent | ad212cc6ba2de57ca69367e37e2a38199d7e4eb7 (diff) | |
download | ffmpeg-c73f65d979c41282ac52c5346f73489d12ce6a5a.tar.gz |
Allow disabling doc generation with --disable-doc
Originally committed as revision 20424 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -33,11 +33,11 @@ FF_LDFLAGS := $(FFLDFLAGS) FF_EXTRALIBS := $(FFEXTRALIBS) FF_DEP_LIBS := $(DEP_LIBS) -ALL_TARGETS-$(BUILD_DOC) += documentation +ALL_TARGETS-$(CONFIG_DOC) += documentation ifdef PROGS INSTALL_TARGETS-yes += install-progs install-data -INSTALL_TARGETS-$(BUILD_DOC) += install-man +INSTALL_TARGETS-$(CONFIG_DOC) += install-man endif INSTALL_PROGS_TARGETS-$(CONFIG_SHARED) = install-libs |