objdictgen/Makefile.in
author Robert Lehmann <robert.lehmann@sitec-systems.de>
Tue, 28 Jul 2015 16:36:55 +0200
changeset 793 72e9e1064432
parent 790 1936110171a2
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
PREFIX = SUB_PREFIX
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    25
39
3e94ee906bc6 Add incremented index in Add Map Variable
lbessard
parents: 0
diff changeset
    26
all: gnosis
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    27
434
5a1039939567 fixed Makefile.in in objdictgen for gnosis
greg
parents: 292
diff changeset
    28
gnosis: gnosis/version.py
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    29
434
5a1039939567 fixed Makefile.in in objdictgen for gnosis
greg
parents: 292
diff changeset
    30
gnosis/version.py:
755
66ceb88411ab Gnosis XML beeing included since ages, wget commented out in Makefile
Edouard Tisserant
parents: 750
diff changeset
    31
	#wget http://gnosis.cx/download/Gnosis_Utils-current.tar.gz
253
bf58ce630b88 Adding support for always installing last gnosis version
lbessard
parents: 158
diff changeset
    32
	mkdir -p gnosis_extract
bf58ce630b88 Adding support for always installing last gnosis version
lbessard
parents: 158
diff changeset
    33
	tar xzof Gnosis_Utils-current.tar.gz -C gnosis_extract
bf58ce630b88 Adding support for always installing last gnosis version
lbessard
parents: 158
diff changeset
    34
	mv gnosis_extract/Gnosis_Utils-*/gnosis .
bf58ce630b88 Adding support for always installing last gnosis version
lbessard
parents: 158
diff changeset
    35
	rm -rf gnosis_extract
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    36
39
3e94ee906bc6 Add incremented index in Add Map Variable
lbessard
parents: 0
diff changeset
    37
install: gnosis
790
1936110171a2 Honor DESTDIR in install rules
Samuel Martin <s.martin49@gmail.com>
parents: 755
diff changeset
    38
	mkdir -p $(DESTDIR)$(PREFIX)/objdictgen
1936110171a2 Honor DESTDIR in install rules
Samuel Martin <s.martin49@gmail.com>
parents: 755
diff changeset
    39
	cp -r *.py* config doc doc_index locale examples gnosis *.ico $(DESTDIR)$(PREFIX)/objdictgen
1936110171a2 Honor DESTDIR in install rules
Samuel Martin <s.martin49@gmail.com>
parents: 755
diff changeset
    40
	chmod -R a+r $(DESTDIR)$(PREFIX)/objdictgen
1936110171a2 Honor DESTDIR in install rules
Samuel Martin <s.martin49@gmail.com>
parents: 755
diff changeset
    41
	mkdir -p $(DESTDIR)$(PREFIX)/bin
1936110171a2 Honor DESTDIR in install rules
Samuel Martin <s.martin49@gmail.com>
parents: 755
diff changeset
    42
	ln -sf $(DESTDIR)$(PREFIX)/objdictgen/objdictedit.py $(DESTDIR)$(PREFIX)/bin/objdictedit
1936110171a2 Honor DESTDIR in install rules
Samuel Martin <s.martin49@gmail.com>
parents: 755
diff changeset
    43
	chmod 755 $(DESTDIR)$(PREFIX)/objdictgen/objdictedit.py
1936110171a2 Honor DESTDIR in install rules
Samuel Martin <s.martin49@gmail.com>
parents: 755
diff changeset
    44
	ln -sf $(DESTDIR)$(PREFIX)/objdictgen/objdictgen.py $(DESTDIR)$(PREFIX)/bin/objdictgen
1936110171a2 Honor DESTDIR in install rules
Samuel Martin <s.martin49@gmail.com>
parents: 755
diff changeset
    45
	chmod 755 $(DESTDIR)$(PREFIX)/objdictgen/objdictgen.py
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    46
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    47
uninstall:
790
1936110171a2 Honor DESTDIR in install rules
Samuel Martin <s.martin49@gmail.com>
parents: 755
diff changeset
    48
	rm -rf $(DESTDIR)$(PREFIX)/objdictgen
1936110171a2 Honor DESTDIR in install rules
Samuel Martin <s.martin49@gmail.com>
parents: 755
diff changeset
    49
	rm -f $(DESTDIR)$(PREFIX)/bin/objdictedit
1936110171a2 Honor DESTDIR in install rules
Samuel Martin <s.martin49@gmail.com>
parents: 755
diff changeset
    50
	rm -f $(DESTDIR)$(PREFIX)/bin/objdictgen
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    51
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    52
clean:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    53
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    54
mrproper: clean
253
bf58ce630b88 Adding support for always installing last gnosis version
lbessard
parents: 158
diff changeset
    55
	rm -f Gnosis_Utils-current.tar.gz
91
ed2612282988 - Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents: 39
diff changeset
    56
	rm -rf gnosis
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    57
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    58