OLD | NEW |
1 AUTOMAKE_OPTIONS = subdir-objects | 1 AUTOMAKE_OPTIONS = subdir-objects |
2 | 2 |
3 lib_LTLIBRARIES = libopus.la | 3 lib_LTLIBRARIES = libopus.la |
4 | 4 |
5 DIST_SUBDIRS = doc | 5 DIST_SUBDIRS = doc |
6 | 6 |
7 INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/celt -I$(top_srcdir)/silk -I$
(top_srcdir)/silk/float -I$(top_srcdir)/silk/fixed | 7 INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/celt -I$(top_srcdir)/silk -I$
(top_srcdir)/silk/float -I$(top_srcdir)/silk/fixed |
8 | 8 |
9 include celt_sources.mk | 9 include celt_sources.mk |
10 include silk_sources.mk | 10 include silk_sources.mk |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 # Targets to build and install just the library without the docs | 119 # Targets to build and install just the library without the docs |
120 opus check-opus install-opus: export NO_DOXYGEN = 1 | 120 opus check-opus install-opus: export NO_DOXYGEN = 1 |
121 | 121 |
122 opus: all | 122 opus: all |
123 check-opus: check | 123 check-opus: check |
124 install-opus: install | 124 install-opus: install |
125 | 125 |
126 | 126 |
127 # Or just the docs | 127 # Or just the docs |
128 docs: | 128 docs: |
129 » cd doc && $(MAKE) $(AM_MAKEFLAGS) | 129 » ( cd doc && $(MAKE) $(AM_MAKEFLAGS) ) |
130 | 130 |
131 install-docs: | 131 install-docs: |
132 » cd doc && $(MAKE) $(AM_MAKEFLAGS) install | 132 » ( cd doc && $(MAKE) $(AM_MAKEFLAGS) install ) |
133 | 133 |
134 | 134 |
135 # Or everything (by default) | 135 # Or everything (by default) |
136 all-local: | 136 all-local: |
137 » @[ -n "$(NO_DOXYGEN)" ] || cd doc && $(MAKE) $(AM_MAKEFLAGS) | 137 » @[ -n "$(NO_DOXYGEN)" ] || ( cd doc && $(MAKE) $(AM_MAKEFLAGS) ) |
138 | 138 |
139 install-data-local: | 139 install-data-local: |
140 » @[ -n "$(NO_DOXYGEN)" ] || cd doc && $(MAKE) $(AM_MAKEFLAGS) install | 140 » @[ -n "$(NO_DOXYGEN)" ] || ( cd doc && $(MAKE) $(AM_MAKEFLAGS) install ) |
141 | 141 |
142 clean-local: | 142 clean-local: |
143 » -cd doc && $(MAKE) $(AM_MAKEFLAGS) clean | 143 » -( cd doc && $(MAKE) $(AM_MAKEFLAGS) clean ) |
144 | 144 |
145 uninstall-local: | 145 uninstall-local: |
146 » cd doc && $(MAKE) $(AM_MAKEFLAGS) uninstall | 146 » ( cd doc && $(MAKE) $(AM_MAKEFLAGS) uninstall ) |
147 | 147 |
148 | 148 |
149 .PHONY: opus check-opus install-opus docs install-docs | 149 .PHONY: opus check-opus install-opus docs install-docs |
OLD | NEW |