~ifolder-dev/simias/trunk-packaging

« back to all changes in this revision

Viewing changes to .svn/text-base/Makefile.am.svn-base

  • Committer: Jorge O. Castro
  • Date: 2007-12-03 06:56:46 UTC
  • Revision ID: jorge@ubuntu.com-20071203065646-mupcnjcwgm5mnhyt
* Remove a bunch of .svn directories we no longer need.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
SUBDIRS = src
2
 
 
3
 
DIST_SUBDIRS = $(SUBDIRS) doc package test
4
 
 
5
 
# remove all of the CVS directories
6
 
dist-hook:
7
 
        rm -rf `find $(distdir) -name CVS`
8
 
        rm -rf `find $(distdir) -name ".svn"`
9
 
 
10
 
EXTRA_DIST = iFolder.snk tools/aclocal tools/gsoap external/libflaim external/log4net external/Mono.WebServer
11
 
 
12
 
all:
13
 
 
14
 
export PKG_CONFIG_PATH := $(PKG_CONFIG_PATH)
15
 
 
16
 
install-exec-local: all
17
 
        $(mkinstalldirs) $(DESTDIR)$(datadir)/$(PACKAGE)
18
 
        $(INSTALL_PROGRAM) $(srcdir)/COPYING $(DESTDIR)$(datadir)/$(PACKAGE)
19
 
 
20
 
uninstall-local:
21
 
        cd $(DESTDIR)$(datadir)/$(PACKAGE); rm -f COPYING
22
 
 
23
 
CLEAN_FILES = 
24
 
 
25
 
clean-local:
26
 
        rm -rf $(COMMON_CLEAN_FILES) $(CLEAN_FILES)
27
 
 
28
 
distclean-local:
29
 
        rm -rf $(COMMON_DISTCLEAN_FILES)
30
 
 
31
 
maintainer-clean-local:
32
 
        rm -rf $(COMMON_MAINTAINER_CLEAN_FILES)
33
 
        rm -f configure $(PACKAGE)-*.tar.gz config.cache
34
 
        rm -f aclocal.m4 conf*.sh configure.lineno config.log
35
 
        rm -f config.guess config.sub config.status
36
 
        rm -f ltmain.sh libtool
37
 
        rm -f install-sh install-sh.lnk INSTALL INSTALL.lnk
38
 
        rm -f missing missing.lnk mkinstalldirs mkinstalldir.lnk
39
 
        rm -rf autom4te.cache
40
 
 
41
 
.PHONY: test
42
 
test: install
43
 
        $(MAKE) -C test test
44
 
                
45
 
test-clean:
46
 
        $(MAKE) -C test clean
47
 
                
48
 
.PHONY: doc doc-clean
49
 
doc:
50
 
        $(MAKE) -C doc all
51
 
 
52
 
doc-nodeps:
53
 
        $(MAKE) -C doc all-nodeps
54
 
 
55
 
doc-clean:
56
 
        $(MAKE) -C doc clean
57
 
 
58
 
.PHONY: package package-sdk package-clean
59
 
 
60
 
package:
61
 
        $(MAKE) -C package all
62
 
 
63
 
package-sdk:
64
 
        $(MAKE) -C package sdk
65
 
 
66
 
package-clean:
67
 
        $(MAKE) -C package clean
68
 
 
69
 
if WINDOWS
70
 
#
71
 
# On Windows, overwrite dist targets to alter how gzipped-tarballs are created
72
 
#
73
 
dist-gzip: distdir
74
 
#       $(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
75
 
        GZIP=$(GZIP_ENV) $(AMTAR) zchof $(distdir).tar.gz $(distdir)
76
 
        $(am__remove_distdir)
77
 
 
78
 
dist dist-all: distdir
79
 
#       $(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
80
 
        GZIP=$(GZIP_ENV) $(AMTAR) zchof $(distdir).tar.gz $(distdir)
81
 
        $(am__remove_distdir)
82
 
 
83
 
endif # WINDOWS