author | etisserant |
Fri, 13 Apr 2007 21:54:13 +0200 | |
changeset 159 | c7c84c68717b |
parent 158 | b505f7116a1c |
child 166 | b6fbc1c59a44 |
permissions | -rw-r--r-- |
0 | 1 |
#! gmake |
2 |
||
3 |
# |
|
4 |
# Copyright (C) 2006 Laurent Bessard |
|
5 |
# |
|
6 |
# This file is part of canfestival, a library implementing the canopen |
|
7 |
# stack |
|
8 |
# |
|
9 |
# This library is free software; you can redistribute it and/or |
|
10 |
# modify it under the terms of the GNU Lesser General Public |
|
11 |
# License as published by the Free Software Foundation; either |
|
12 |
# version 2.1 of the License, or (at your option) any later version. |
|
13 |
# |
|
14 |
# This library is distributed in the hope that it will be useful, |
|
15 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
16 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
17 |
# Lesser General Public License for more details. |
|
18 |
# |
|
19 |
# You should have received a copy of the GNU Lesser General Public |
|
20 |
# License along with this library; if not, write to the Free Software |
|
21 |
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
22 |
# |
|
23 |
||
24 |
TARGET = SUB_TARGET |
|
25 |
||
26 |
all: |
|
27 |
ifeq ($(TARGET),hc12) |
|
28 |
$(MAKE) -C gene_SYNC_HCS12 $@ |
|
29 |
endif |
|
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
0
diff
changeset
|
30 |
ifeq ($(TARGET),unix) |
0 | 31 |
$(MAKE) -C TestMasterSlave $@ |
32 |
endif |
|
33 |
||
34 |
clean: |
|
35 |
ifeq ($(TARGET),hc12) |
|
36 |
$(MAKE) -C gene_SYNC_HCS12 $@ |
|
37 |
endif |
|
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
0
diff
changeset
|
38 |
ifeq ($(TARGET),unix) |
0 | 39 |
$(MAKE) -C TestMasterSlave $@ |
40 |
endif |
|
41 |
||
42 |
mrproper: clean |
|
43 |
ifeq ($(TARGET),hc12) |
|
44 |
$(MAKE) -C gene_SYNC_HCS12 $@ |
|
45 |
endif |
|
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
0
diff
changeset
|
46 |
ifeq ($(TARGET),unix) |
0 | 47 |
$(MAKE) -C TestMasterSlave $@ |
48 |
endif |
|
49 |
||
158
b505f7116a1c
Moved DS-301 PDF into objdictgen. Fixed installation on linux. Now TestMasterSlave is also installed in $PREFIX/bin.
etisserant
parents:
156
diff
changeset
|
50 |
install: |
b505f7116a1c
Moved DS-301 PDF into objdictgen. Fixed installation on linux. Now TestMasterSlave is also installed in $PREFIX/bin.
etisserant
parents:
156
diff
changeset
|
51 |
ifeq ($(TARGET),unix) |
b505f7116a1c
Moved DS-301 PDF into objdictgen. Fixed installation on linux. Now TestMasterSlave is also installed in $PREFIX/bin.
etisserant
parents:
156
diff
changeset
|
52 |
$(MAKE) -C TestMasterSlave $@ |
b505f7116a1c
Moved DS-301 PDF into objdictgen. Fixed installation on linux. Now TestMasterSlave is also installed in $PREFIX/bin.
etisserant
parents:
156
diff
changeset
|
53 |
endif |
0 | 54 |
|
158
b505f7116a1c
Moved DS-301 PDF into objdictgen. Fixed installation on linux. Now TestMasterSlave is also installed in $PREFIX/bin.
etisserant
parents:
156
diff
changeset
|
55 |
uninstall: |
b505f7116a1c
Moved DS-301 PDF into objdictgen. Fixed installation on linux. Now TestMasterSlave is also installed in $PREFIX/bin.
etisserant
parents:
156
diff
changeset
|
56 |
ifeq ($(TARGET),unix) |
b505f7116a1c
Moved DS-301 PDF into objdictgen. Fixed installation on linux. Now TestMasterSlave is also installed in $PREFIX/bin.
etisserant
parents:
156
diff
changeset
|
57 |
$(MAKE) -C TestMasterSlave $@ |
b505f7116a1c
Moved DS-301 PDF into objdictgen. Fixed installation on linux. Now TestMasterSlave is also installed in $PREFIX/bin.
etisserant
parents:
156
diff
changeset
|
58 |
endif |