~ubuntu-branches/ubuntu/wily/afnix/wily

« back to all changes in this revision

Viewing changes to src/clt/axs/doc/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Anibal Monsalve Salazar
  • Date: 2011-03-16 21:31:18 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110316213118-gk4k3ez3e5d2huna
Tags: 2.0.0-1
* QA upload.
* New upstream release
* Debian source format is 3.0 (quilt)
* Fix debhelper-but-no-misc-depends
* Fix ancient-standards-version
* Fix package-contains-linda-override
* debhelper compatibility is 7
* Fix dh-clean-k-is-deprecated

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# ----------------------------------------------------------------------------
2
 
# - Makefile                                                                 -
3
 
# - afnix cross spreadsheet documentation makefile                           -
4
 
# ----------------------------------------------------------------------------
5
 
# - This program is  free software;  you can  redistribute it and/or  modify -
6
 
# - it provided that this copyright notice is kept intact.                   -
7
 
# -                                                                          -
8
 
# - This  program  is  distributed in the hope  that it  will be useful, but -
9
 
# - without  any   warranty;  without  even   the   implied    warranty   of -
10
 
# - merchantability  or fitness for a particular purpose. In not event shall -
11
 
# - the copyright holder be  liable for  any direct, indirect, incidental or -
12
 
# - special damages arising in any way out of the use of this software.      -
13
 
# ----------------------------------------------------------------------------
14
 
# - copyright (c) 1999-2007 amaury darsch                                    -
15
 
# ----------------------------------------------------------------------------
16
 
 
17
 
TOPDIR          = ../../../..
18
 
MAKDIR          = $(TOPDIR)/cnf/mak
19
 
CONFFILE        = $(MAKDIR)/afnix-conf.mak
20
 
RULEFILE        = $(MAKDIR)/afnix-docs.mak
21
 
include           $(CONFFILE)
22
 
 
23
 
# ----------------------------------------------------------------------------
24
 
# - project configuration                                                    -
25
 
# ----------------------------------------------------------------------------
26
 
 
27
 
DSTDIR          = $(BLDDST)/src/clt/axs/doc
28
 
MANSEC          = $(MANDIR)/man1
29
 
MANUAL          = axs.xml
30
 
MANMAN          = axs::afnix.1
31
 
 
32
 
# ----------------------------------------------------------------------------
33
 
# - project rules                                                            -
34
 
# ----------------------------------------------------------------------------
35
 
 
36
 
# rule: all
37
 
# this rule is the default rule which build the documentation
38
 
 
39
 
all: doc
40
 
.PHONY: doc
41
 
 
42
 
# include: rule.mak
43
 
# this rule includes the platform dependant rules
44
 
 
45
 
include $(RULEFILE)
46
 
 
47
 
# rule: distri
48
 
# this rule install the distribution
49
 
 
50
 
distri:
51
 
        @$(MKDIR) $(DSTDIR)
52
 
        @$(CP)    Makefile $(DSTDIR)
53
 
        @$(CP)    *.xml    $(DSTDIR)
54
 
.PHONY: distri
55
 
 
56
 
# rule: instdoc
57
 
# this rule install the documentation
58
 
 
59
 
instdoc: doc
60
 
        @$(MKDIR) $(DOCDIR)
61
 
        @$(CP)    $(XHTMAN) $(DOCDIR)
62
 
        @$(MKDIR) $(MANSEC)
63
 
        @$(CP)    $(MANMAN) $(MANSEC)
64
 
.PHONY: instdoc
65
 
 
66
 
# rule: clean
67
 
# this rule clean the directory
68
 
 
69
 
clean::
70
 
        @$(RM) $(XHTMAN)
71
 
        @$(RM) $(MANMAN)