]> rtime.felk.cvut.cz Git - CanFestival-3.git/blob - examples/Makefile.in
6b4dae324cb57f6cc2247cc6e601151e58bd612b
[CanFestival-3.git] / examples / Makefile.in
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 TIMERS = SUB_TIMERS_DRIVER
26 WX = SUB_WX
27 ENABLE_LSS = SUB_ENABLE_LSS
28
29 ifeq ($(TARGET),win32)
30         BLD_TEST=1
31 endif
32 ifeq ($(TARGET),unix)
33         BLD_TEST=1
34 endif
35
36 ifeq ($(WX),1)
37 define build_command_seq_wx
38         $(MAKE) -C DS401_Master $@
39         $(MAKE) -C DS401_Slave_Gui $@
40 endef
41 endif
42
43 ifdef BLD_TEST
44 ifeq ($(ENABLE_LSS),1)
45 define build_command_seq
46         $(MAKE) -C TestMasterSlave $@
47         $(MAKE) -C TestMasterSlaveLSS $@
48         $(MAKE) -C TestMasterMicroMod $@
49         $(MAKE) -C SillySlave $@
50         $(build_command_seq_wx)
51 endef
52 else
53 define build_command_seq
54         $(MAKE) -C TestMasterSlave $@
55         $(MAKE) -C TestMasterMicroMod $@
56         $(build_command_seq_wx)
57 endef
58 endif
59 endif
60
61 ifeq ($(TARGET),hc12)
62 define build_command_seq
63         $(MAKE) -C gene_SYNC_HCS12 $@
64 endef
65 endif
66
67 ifeq ($(TIMERS),timers_kernel)
68 define build_command_seq
69         $(MAKE) -C kerneltest $@
70 endef
71 endif
72
73
74 all:
75         $(build_command_seq)
76
77 clean:
78         $(build_command_seq)
79
80 install:
81         $(build_command_seq)
82
83 uninstall:
84         $(build_command_seq)
85
86 mrproper: clean
87         $(build_command_seq)