- Timestamp:
- Dec 1, 2004, 9:34:40 PM (20 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 02839ae
- Parents:
- c0ec39c
- Location:
- doc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/Makefile.am
rc0ec39c re997b1a 5 5 aubionotes.sgml aubioonset.sgml 6 6 7 man_MANS = aubionotes.1 aubioonset.1 7 8 #docbook_docs = aubio-devdoc.xml 8 9 #DOCBOOK_STYLESHEET ?= http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl … … 37 38 cp aubio.css examples 38 39 39 man: 40 docbook-to-man aubionotes.sgml > aubionotes.1 41 docbook-to-man aubioonset.sgml > aubioonset.1 40 %.sgml: 41 42 %.1: %.sgml 43 docbook-to-man $< > $*.1 42 44 43 45 # Update docs for distribution -
doc/Makefile.in
rc0ec39c re997b1a 159 159 aubionotes.sgml aubioonset.sgml 160 160 161 162 man_MANS = aubionotes.1 aubioonset.1 161 163 subdir = doc 162 164 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 … … 165 167 CONFIG_CLEAN_FILES = 166 168 DIST_SOURCES = 169 170 NROFF = nroff 171 MANS = $(man_MANS) 167 172 DIST_COMMON = $(srcdir)/Makefile.in Makefile.am 168 173 all: all-am … … 184 189 -rm -f libtool 185 190 uninstall-info-am: 191 192 man1dir = $(mandir)/man1 193 install-man1: $(man1_MANS) $(man_MANS) 194 @$(NORMAL_INSTALL) 195 $(mkinstalldirs) $(DESTDIR)$(man1dir) 196 @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \ 197 l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ 198 for i in $$l2; do \ 199 case "$$i" in \ 200 *.1*) list="$$list $$i" ;; \ 201 esac; \ 202 done; \ 203 for i in $$list; do \ 204 if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \ 205 else file=$$i; fi; \ 206 ext=`echo $$i | sed -e 's/^.*\\.//'`; \ 207 case "$$ext" in \ 208 1*) ;; \ 209 *) ext='1' ;; \ 210 esac; \ 211 inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ 212 inst=`echo $$inst | sed -e 's/^.*\///'`; \ 213 inst=`echo $$inst | sed '$(transform)'`.$$ext; \ 214 echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst"; \ 215 $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst; \ 216 done 217 uninstall-man1: 218 @$(NORMAL_UNINSTALL) 219 @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \ 220 l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ 221 for i in $$l2; do \ 222 case "$$i" in \ 223 *.1*) list="$$list $$i" ;; \ 224 esac; \ 225 done; \ 226 for i in $$list; do \ 227 ext=`echo $$i | sed -e 's/^.*\\.//'`; \ 228 case "$$ext" in \ 229 1*) ;; \ 230 *) ext='1' ;; \ 231 esac; \ 232 inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ 233 inst=`echo $$inst | sed -e 's/^.*\///'`; \ 234 inst=`echo $$inst | sed '$(transform)'`.$$ext; \ 235 echo " rm -f $(DESTDIR)$(man1dir)/$$inst"; \ 236 rm -f $(DESTDIR)$(man1dir)/$$inst; \ 237 done 186 238 tags: TAGS 187 239 TAGS: … … 224 276 check-am: all-am 225 277 check: check-am 226 all-am: Makefile 278 all-am: Makefile $(MANS) 227 279 228 280 installdirs: 281 $(mkinstalldirs) $(DESTDIR)$(man1dir) 229 282 install: install-am 230 283 install-exec: install-exec-am … … 267 320 info-am: 268 321 269 install-data-am: 322 install-data-am: install-man 270 323 271 324 install-exec-am: … … 273 326 install-info: install-info-am 274 327 275 install-man: 328 install-man: install-man1 276 329 277 330 installcheck-am: … … 294 347 ps-am: 295 348 296 uninstall-am: uninstall-info-am 349 uninstall-am: uninstall-info-am uninstall-man 350 351 uninstall-man: uninstall-man1 297 352 298 353 .PHONY: all all-am check check-am clean clean-generic clean-libtool \ … … 300 355 dvi-am info info-am install install-am install-data \ 301 356 install-data-am install-exec install-exec-am install-info \ 302 install-info-am install-man install- strip installcheck\303 installcheck -am installdirs maintainer-clean \357 install-info-am install-man install-man1 install-strip \ 358 installcheck installcheck-am installdirs maintainer-clean \ 304 359 maintainer-clean-generic maintainer-clean-local mostlyclean \ 305 360 mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ 306 uninstall uninstall-am uninstall-info-am 307 361 uninstall uninstall-am uninstall-info-am uninstall-man \ 362 uninstall-man1 308 363 309 364 #docbook_docs = aubio-devdoc.xml … … 339 394 cp aubio.css examples 340 395 341 man: 342 docbook-to-man aubionotes.sgml > aubionotes.1 343 docbook-to-man aubioonset.sgml > aubioonset.1 396 %.sgml: 397 398 %.1: %.sgml 399 docbook-to-man $< > $*.1 344 400 345 401 # Update docs for distribution -
doc/aubionotes.sgml
rc0ec39c re997b1a 58 58 <refname>&dhpackage;</refname> 59 59 60 <refpurpose>an sound file onset detector</refpurpose> 60 <refpurpose>a command line tool for real time wav to midi 61 conversion</refpurpose> 62 61 63 </refnamediv> 62 64 <refsynopsisdiv>
Note: See TracChangeset
for help on using the changeset viewer.