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
|
39
|
40 |
ln -s $(PREFIX)/objdictgen/objdictedit.py $(PREFIX)/bin/objdictedit
|
|
41 |
chmod 755 $(PREFIX)/objdictgen/objdictedit.py
|
0
|
42 |
ln -s $(PREFIX)/objdictgen/objdictgen.py $(PREFIX)/bin/objdictgen
|
|
43 |
chmod 755 $(PREFIX)/objdictgen/objdictgen.py
|
|
44 |
|
|
45 |
uninstall:
|
|
46 |
-rm -rf $(PREFIX)/objdictgen
|
39
|
47 |
-rm -f $(PREFIX)/bin/objdictedit
|
0
|
48 |
-rm -f $(PREFIX)/bin/objdictgen
|
|
49 |
|
|
50 |
clean:
|
|
51 |
|
|
52 |
mrproper: clean
|
|
53 |
-rm -f Gnosis_Utils-1.2.1.tar.gz
|
|
54 |
-rm -rf gnosis
|
|
55 |
|
|
56 |
|