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

« back to all changes in this revision

Viewing changes to exp/prj/amd/src/app/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:amd project 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)/exp/prj/amd/src/app
 
28
 
 
29
APPLIB          = afnix-exp-amd.axl
 
30
APPALS          = $(wildcard exp-amd-*.als)
 
31
APPAXC          = $(APPALS:.als=.axc)
 
32
AXCEXE          = "axc"
 
33
AXLEXE          = "axl"
 
34
 
 
35
# ----------------------------------------------------------------------------
 
36
# - project rules                                                            -
 
37
# ----------------------------------------------------------------------------
 
38
 
 
39
# rule: all
 
40
# this rule is the default rule which call the build rule
 
41
 
 
42
all: $(APPLIB)
 
43
.PHONY: all
 
44
 
 
45
# include: rule.mak
 
46
# this rule includes the platform dependant rules
 
47
 
 
48
include $(RULEFILE)
 
49
# rule: build
 
50
# this rule build all source directories
 
51
 
 
52
%.axc : %.als
 
53
        @echo "compiling " $<
 
54
        @$(AEXEC) --prefix=$(BLDDIR) --binexe=$(AXCEXE) $<
 
55
 
 
56
$(APPLIB) : $(APPAXC)
 
57
        @echo "linking   " $@
 
58
        @$(AEXEC) --noloop --prefix=$(BLDDIR) --binexe=$(AXLEXE) \
 
59
                  --binopt="-c -f $@" $(APPAXC)
 
60
        @$(MKDIR) $(BLDPRJ)
 
61
        @$(CP) $@ $(BLDPRJ)
 
62
 
 
63
# rule: distri
 
64
# this rule create the ditribution
 
65
 
 
66
distri:
 
67
        @$(MKDIR) $(DSTDIR)
 
68
        @$(CP)    Makefile $(DSTDIR)
 
69
        @$(CP)    $(wildcard *.als) $(DSTDIR)
 
70
.PHONY: distri
 
71
 
 
72
# rule: install
 
73
# this rule install the distribution
 
74
 
 
75
install: $(APPLIB)
 
76
        @$(MKDIR)        $(PRJDIR)
 
77
        @$(CP) $(APPLIB) $(PRJDIR)
 
78
.PHONY: install
 
79
 
 
80
# rule: clean
 
81
# this rule local files
 
82
clean::
 
83
        @$(RM) $(APPLIB)
 
84
        @$(RM) *.axc