File: Makefile.am

package info (click to toggle)
taglib-sharp 2.0.3.0-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,468 kB
  • ctags: 2,639
  • sloc: cs: 18,544; sh: 3,353; makefile: 222
file content (44 lines) | stat: -rw-r--r-- 1,032 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
32
33
34
35
36
37
38
39
40
41
42
43
44
SUBDIRS = \
   src    \
   examples \
   docs

pkgconfig_in_files = taglib-sharp.pc.in
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = $(pkgconfig_in_files:.pc.in=.pc)

EXTRA_DIST =             \
   $(pkgconfig_in_files) \
   taglib-sharp.snk \
   taglib-sharp.csproj \
   taglib-sharp.mds

DISTCLEANFILES = taglib-sharp.pc

MAINTAINERCLEANFILES = \
	compile \
	INSTALL \
	config.h.in \
	aclocal.m4 \
	ltmain.sh \
	Makefile.in \
	depcomp \
	missing \
	install-sh \
	configure \
	config.sub \
	config.guess \
	mkinstalldirs

distwin: all
	mkdir -p $(srcdir)/$(WINDIR)
	cp $(srcdir)/NEWS $(srcdir)/$(WINDIR)/NEWS.txt
	cp $(srcdir)/ChangeLog $(srcdir)/$(WINDIR)/ChangeLog.txt
	cp $(srcdir)/COPYING $(srcdir)/$(WINDIR)/COPYING.txt
	cp $(srcdir)/taglib-sharp.csproj $(srcdir)/$(WINDIR)/taglib-sharp.csproj
	if [ -e $(srcdir)/windows-files ];					\
	  then cp -r $(srcdir)/windows-files/* $(srcdir)/$(WINDIR);		\
	fi
	cd $(srcdir)/src && make distwin
	zip -9 -r $(srcdir)/$(WINDIR).zip $(srcdir)/$(WINDIR)
	rm -rf $(srcdir)/$(WINDIR)