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

« back to all changes in this revision

Viewing changes to prj/std/adp/tst/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:adp project test 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-2011 amaury darsch                                    -
 
15
# ----------------------------------------------------------------------------
 
16
 
 
17
TOPDIR          = ../../../..
 
18
MAKDIR          = $(TOPDIR)/cnf/mak
 
19
CONFFILE        = $(MAKDIR)/afnix-conf.mak
 
20
RULEFILE        = $(MAKDIR)/afnix-rule.mak
 
21
include           $(CONFFILE)
 
22
 
 
23
# ----------------------------------------------------------------------------
 
24
# project configurationn                                                     -
 
25
# ----------------------------------------------------------------------------
 
26
 
 
27
DSTDIR          = $(BLDDST)/prj/std/adp/tst
 
28
APPLIB          = $(BLDPRJ)/afnix-std-adp.axl
 
29
 
 
30
# ----------------------------------------------------------------------------
 
31
# test definition                                                            -
 
32
# ----------------------------------------------------------------------------
 
33
 
 
34
AXIOPT          = "-f assert -i $(APPLIB)"
 
35
TESTALS         = $(wildcard *.als)
 
36
 
 
37
# ----------------------------------------------------------------------------
 
38
# - project rules                                                            -
 
39
# ----------------------------------------------------------------------------
 
40
 
 
41
# rule: all
 
42
# this rule is the default rule which call the test rule
 
43
 
 
44
all: test
 
45
.PHONY: all
 
46
 
 
47
# include: rule.mak
 
48
# this rule includes the platform dependant rules
 
49
 
 
50
include $(RULEFILE)
 
51
 
 
52
# rule: distri
 
53
# this rule install the tst distribution files
 
54
 
 
55
distri:
 
56
        @$(MKDIR) $(DSTDIR)
 
57
        @$(CP)    Makefile $(DSTDIR)
 
58
        @$(CP)    *.als    $(DSTDIR)
 
59
.PHONY: distri