File: Makefile.in

package info (click to toggle)
ocaml-lastfm 0.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 480 kB
  • ctags: 89
  • sloc: ml: 806; makefile: 84; sh: 3
file content (32 lines) | stat: -rw-r--r-- 826 bytes parent folder | download | duplicates (3)
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
32
# $Id: Makefile.in 2660 2006-07-18 17:23:31Z dbaelde $

PROGNAME := ocaml-lastfm
DISTFILES := CHANGES COPYING Makefile.in README \
	bootstrap configure configure.ac m4/*.m4 \
	src/lastfm.ml src/lastfm.mli src/Makefile.in src/META.in \
	src/OCamlMakefile src/*.ml.in src/lastfm_generic.ml \
	src/lastfm_generic.mli \
	examples/*.ml examples/Makefile* examples/OCamlMakefile
VERSION = @VERSION@

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

distclean: clean
	$(MAKE) -C examples clean

doc:
	$(MAKE) -C src htdoc
	mkdir -p doc
	rm -rf doc/html
	mv src/doc/lastfm/html doc
	rm -rf src/doc

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

.PHONY: dist doc