File: Makefile.in

package info (click to toggle)
ocaml-alsa 0.2.3-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 696 kB
  • ctags: 166
  • sloc: sh: 3,245; ansic: 634; ml: 231; makefile: 79
file content (31 lines) | stat: -rw-r--r-- 729 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# $Id$

PROGNAME := ocaml-alsa
DISTFILES := @AUTOCONF_INSTALL_FILES@ CHANGES COPYING Makefile.in README \
	bootstrap configure configure.ac  \
	src/*.ml src/*.mli src/*.c src/Makefile.in src/META.in \
	src/OCamlMakefile \
	examples/*.ml examples/Makefile examples/OCamlMakefile \
	doc
VERSION = @VERSION@

all clean install uninstall:
	$(MAKE) -C src $@

distclean: clean
	$(MAKE) -C examples clean

doc:
	$(MAKE) -C src htdoc
	rm -rf doc/html
	mv src/doc/alsa/html doc
	rm -rf src/doc

dist: doc
	rm -rf $(PROGNAME)-$(VERSION)
	mkdir $(PROGNAME)-$(VERSION)
	cp -R -L --parents $(DISTFILES) $(PROGNAME)-$(VERSION)
	tar zcvf ../$(PROGNAME)-$(VERSION).tar.gz $(PROGNAME)-$(VERSION)
	rm -rf $(PROGNAME)-$(VERSION)

.PHONY: doc dist