author | Christian Taedcke <hacking@taedcke.com> |
Thu, 27 Jan 2011 17:45:48 +0100 | |
changeset 654 | fc9af616633d |
parent 555 | ee24dcbd3e64 |
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 |
|
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
25 |
TIMERS = SUB_TIMERS_DRIVER |
354 | 26 |
WX = SUB_WX |
381 | 27 |
ENABLE_LSS = SUB_ENABLE_LSS |
0 | 28 |
|
354 | 29 |
ifeq ($(TARGET),win32) |
30 |
BLD_TEST=1 |
|
31 |
endif |
|
32 |
ifeq ($(TARGET),unix) |
|
33 |
BLD_TEST=1 |
|
0 | 34 |
endif |
166
b6fbc1c59a44
Added a MicroMod Master sample in examples/TestMasterMicroMod. Fixed some SDO abort code and callback problem in sdo.c.
etisserant
parents:
158
diff
changeset
|
35 |
|
354 | 36 |
ifeq ($(WX),1) |
37 |
define build_command_seq_wx |
|
329 | 38 |
$(MAKE) -C DS401_Master $@ |
39 |
$(MAKE) -C DS401_Slave_Gui $@ |
|
354 | 40 |
endef |
0 | 41 |
endif |
42 |
||
354 | 43 |
ifdef BLD_TEST |
381 | 44 |
ifeq ($(ENABLE_LSS),1) |
45 |
define build_command_seq |
|
46 |
$(MAKE) -C TestMasterSlave $@ |
|
47 |
$(MAKE) -C TestMasterSlaveLSS $@ |
|
48 |
$(MAKE) -C TestMasterMicroMod $@ |
|
49 |
$(build_command_seq_wx) |
|
50 |
endef |
|
51 |
else |
|
354 | 52 |
define build_command_seq |
555 | 53 |
$(MAKE) -C CANOpenShell $@ |
267
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
248
diff
changeset
|
54 |
$(MAKE) -C TestMasterSlave $@ |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
248
diff
changeset
|
55 |
$(MAKE) -C TestMasterMicroMod $@ |
354 | 56 |
$(build_command_seq_wx) |
57 |
endef |
|
267
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
248
diff
changeset
|
58 |
endif |
381 | 59 |
endif |
267
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
248
diff
changeset
|
60 |
|
0 | 61 |
ifeq ($(TARGET),hc12) |
354 | 62 |
define build_command_seq |
0 | 63 |
$(MAKE) -C gene_SYNC_HCS12 $@ |
354 | 64 |
endef |
267
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
248
diff
changeset
|
65 |
endif |
166
b6fbc1c59a44
Added a MicroMod Master sample in examples/TestMasterMicroMod. Fixed some SDO abort code and callback problem in sdo.c.
etisserant
parents:
158
diff
changeset
|
66 |
|
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
67 |
ifeq ($(TIMERS),timers_kernel) |
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
68 |
define build_command_seq |
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
69 |
$(MAKE) -C kerneltest $@ |
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
70 |
endef |
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
71 |
endif |
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
381
diff
changeset
|
72 |
|
166
b6fbc1c59a44
Added a MicroMod Master sample in examples/TestMasterMicroMod. Fixed some SDO abort code and callback problem in sdo.c.
etisserant
parents:
158
diff
changeset
|
73 |
|
354 | 74 |
all: |
75 |
$(build_command_seq) |
|
76 |
||
77 |
clean: |
|
78 |
$(build_command_seq) |
|
79 |
||
373 | 80 |
install: |
81 |
$(build_command_seq) |
|
82 |
||
416 | 83 |
uninstall: |
84 |
$(build_command_seq) |
|
85 |
||
0 | 86 |
mrproper: clean |
354 | 87 |
$(build_command_seq) |