examples/Makefile.in
author Robert Lehmann <robert.lehmann@sitec-systems.de>
Tue, 28 Jul 2015 16:36:55 +0200
changeset 793 72e9e1064432
parent 555 ee24dcbd3e64
permissions -rw-r--r--
timers_unix: Fix termination problem of WaitReceiveTaskEnd

The function pthread_kill sends the Signal thread and to the own process.
If you use this construct than the application which calls uses the
canfestival api will terminate at the call of canClose. To avoid that
use pthread_cancel instead of pthread_kill. To use the pthread_cancel call
you need to set the cancel ability in the thread function. That means
you need to call pthread_setcancelstate and pthread_setcanceltype.
For the termination of the thread at any time it is important to set the
cancel type to PTHREAD_CANCEL_ASYNCHRONOUS.
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     1
#! gmake
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     2
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     3
#
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     4
# Copyright (C) 2006 Laurent Bessard
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     5
# 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     6
# This file is part of canfestival, a library implementing the canopen
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     7
# stack
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     8
# 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     9
# This library is free software; you can redistribute it and/or
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    10
# modify it under the terms of the GNU Lesser General Public
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    11
# License as published by the Free Software Foundation; either
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    12
# version 2.1 of the License, or (at your option) any later version.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    13
# 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    14
# This library is distributed in the hope that it will be useful,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    15
# but WITHOUT ANY WARRANTY; without even the implied warranty of
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    16
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    17
# Lesser General Public License for more details.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    18
# 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    19
# You should have received a copy of the GNU Lesser General Public
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    20
# License along with this library; if not, write to the Free Software
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    21
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    22
# 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    23
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    24
TARGET = SUB_TARGET
391
7802a7d5584f Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents: 381
diff changeset
    25
TIMERS = SUB_TIMERS_DRIVER
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    26
WX = SUB_WX
381
854c43cdc24a added TestMasterSlaveLSS. LSS protocol revised.
groke6
parents: 373
diff changeset
    27
ENABLE_LSS = SUB_ENABLE_LSS
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    28
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    29
ifeq ($(TARGET),win32)
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    30
	BLD_TEST=1
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    31
endif
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    32
ifeq ($(TARGET),unix)
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    33
	BLD_TEST=1
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    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
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    36
ifeq ($(WX),1)
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    37
define build_command_seq_wx
329
7717252e3ed9 Changes to compile for win32
greg
parents: 308
diff changeset
    38
	$(MAKE) -C DS401_Master $@
7717252e3ed9 Changes to compile for win32
greg
parents: 308
diff changeset
    39
	$(MAKE) -C DS401_Slave_Gui $@
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    40
endef
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    41
endif
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    42
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    43
ifdef BLD_TEST
381
854c43cdc24a added TestMasterSlaveLSS. LSS protocol revised.
groke6
parents: 373
diff changeset
    44
ifeq ($(ENABLE_LSS),1)
854c43cdc24a added TestMasterSlaveLSS. LSS protocol revised.
groke6
parents: 373
diff changeset
    45
define build_command_seq
854c43cdc24a added TestMasterSlaveLSS. LSS protocol revised.
groke6
parents: 373
diff changeset
    46
	$(MAKE) -C TestMasterSlave $@
854c43cdc24a added TestMasterSlaveLSS. LSS protocol revised.
groke6
parents: 373
diff changeset
    47
	$(MAKE) -C TestMasterSlaveLSS $@
854c43cdc24a added TestMasterSlaveLSS. LSS protocol revised.
groke6
parents: 373
diff changeset
    48
	$(MAKE) -C TestMasterMicroMod $@
854c43cdc24a added TestMasterSlaveLSS. LSS protocol revised.
groke6
parents: 373
diff changeset
    49
	$(build_command_seq_wx)
854c43cdc24a added TestMasterSlaveLSS. LSS protocol revised.
groke6
parents: 373
diff changeset
    50
endef
854c43cdc24a added TestMasterSlaveLSS. LSS protocol revised.
groke6
parents: 373
diff changeset
    51
else
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    52
define build_command_seq
555
ee24dcbd3e64 Add new example : CANOpen shell
greg
parents: 518
diff changeset
    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
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    56
	$(build_command_seq_wx)
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    57
endef
267
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents: 248
diff changeset
    58
endif
381
854c43cdc24a added TestMasterSlaveLSS. LSS protocol revised.
groke6
parents: 373
diff changeset
    59
endif
267
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents: 248
diff changeset
    60
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    61
ifeq ($(TARGET),hc12)
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    62
define build_command_seq
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    63
	$(MAKE) -C gene_SYNC_HCS12 $@
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    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
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    74
all:
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    75
	$(build_command_seq)
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    76
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    77
clean:
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    78
	$(build_command_seq)
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    79
373
fc32e8a796ae fix install target in example Makefile.in
greg
parents: 354
diff changeset
    80
install:
fc32e8a796ae fix install target in example Makefile.in
greg
parents: 354
diff changeset
    81
	$(build_command_seq)
fc32e8a796ae fix install target in example Makefile.in
greg
parents: 354
diff changeset
    82
416
9ef58fa2c66a fixed missing uninstall target in examples makefile
greg
parents: 400
diff changeset
    83
uninstall:
9ef58fa2c66a fixed missing uninstall target in examples makefile
greg
parents: 400
diff changeset
    84
	$(build_command_seq)
9ef58fa2c66a fixed missing uninstall target in examples makefile
greg
parents: 400
diff changeset
    85
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    86
mrproper: clean
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    87
	$(build_command_seq)