author | leonid |
Wed, 14 Feb 2007 22:19:53 +0100 | |
changeset 104 | b3a53f4ea6f9 |
parent 92 | 0d84d95790d9 |
child 158 | b505f7116a1c |
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 |
PREFIX = SUB_PREFIX |
|
25 |
||
39 | 26 |
all: gnosis |
0 | 27 |
|
28 |
gnosis: Gnosis_Utils-1.2.1.tar.gz |
|
29 |
||
30 |
Gnosis_Utils-1.2.1.tar.gz: |
|
31 |
wget http://gnosis.cx/download/Gnosis_Utils-1.2.1.tar.gz |
|
32 |
tar xfz Gnosis_Utils-1.2.1.tar.gz |
|
33 |
mv Gnosis_Utils-1.2.1/gnosis . |
|
34 |
rm -rf Gnosis_Utils-1.2.1 |
|
35 |
||
39 | 36 |
install: gnosis |
0 | 37 |
cp -r ../objdictgen $(PREFIX)/ |
39 | 38 |
rm -f $(PREFIX)/objdictgen/Gnosis_Utils-1.2.1.tar.gz |
0 | 39 |
chmod -R a+r $(PREFIX)/objdictgen |
92 | 40 |
mkdir -p $(PREFIX)/bin |
39 | 41 |
ln -s $(PREFIX)/objdictgen/objdictedit.py $(PREFIX)/bin/objdictedit |
42 |
chmod 755 $(PREFIX)/objdictgen/objdictedit.py |
|
0 | 43 |
ln -s $(PREFIX)/objdictgen/objdictgen.py $(PREFIX)/bin/objdictgen |
44 |
chmod 755 $(PREFIX)/objdictgen/objdictgen.py |
|
45 |
||
46 |
uninstall: |
|
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
|
47 |
rm -rf $(PREFIX)/objdictgen |
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
|
48 |
rm -f $(PREFIX)/bin/objdictedit |
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
|
49 |
rm -f $(PREFIX)/bin/objdictgen |
0 | 50 |
|
51 |
clean: |
|
52 |
||
53 |
mrproper: clean |
|
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
|
54 |
rm -f Gnosis_Utils-1.2.1.tar.gz |
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
|
55 |
rm -rf gnosis |
0 | 56 |
|
57 |