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 |
INSTALL_JAXE = SUB_OPT_JAXE
|
|
26 |
|
|
27 |
all: jaxe gnosis
|
|
28 |
|
|
29 |
jaxe: jaxe-unix-2.2.tar.gz
|
|
30 |
|
|
31 |
gnosis: Gnosis_Utils-1.2.1.tar.gz
|
|
32 |
|
|
33 |
Gnosis_Utils-1.2.1.tar.gz:
|
|
34 |
wget http://gnosis.cx/download/Gnosis_Utils-1.2.1.tar.gz
|
|
35 |
tar xfz Gnosis_Utils-1.2.1.tar.gz
|
|
36 |
mv Gnosis_Utils-1.2.1/gnosis .
|
|
37 |
rm -rf Gnosis_Utils-1.2.1
|
|
38 |
|
|
39 |
jaxe-unix-2.2.tar.gz:
|
|
40 |
ifeq ($(INSTALL_JAXE),jaxe)
|
|
41 |
wget http://dl.sourceforge.net/sourceforge/jaxe/jaxe-unix-2.2.tar.gz
|
|
42 |
tar xfz jaxe-unix-2.2.tar.gz
|
|
43 |
endif
|
|
44 |
|
|
45 |
install: jaxe
|
|
46 |
cp -r ../objdictgen $(PREFIX)/
|
|
47 |
ifeq ($(INSTALL_JAXE),jaxe)
|
|
48 |
rm -f $(PREFIX)/objdictgen/jaxe-unix-2.2.tar.gz
|
|
49 |
endif
|
|
50 |
rm -f $(PREFIX)/objdictgen/Gnosis_Utils-current.tar.gz
|
|
51 |
chmod -R a+r $(PREFIX)/objdictgen
|
|
52 |
chmod 755 $(PREFIX)/objdictgen/objdictedit.sh
|
|
53 |
echo -e "#!/bin/sh\n pushd $(PREFIX)/objdictgen/\n ./objdictedit.sh\n popd\n" > $(PREFIX)/bin/objdictedit
|
|
54 |
chmod 755 $(PREFIX)/bin/objdictedit
|
|
55 |
ln -s $(PREFIX)/objdictgen/objdictgen.py $(PREFIX)/bin/objdictgen
|
|
56 |
chmod 755 $(PREFIX)/objdictgen/objdictgen.py
|
|
57 |
|
|
58 |
uninstall:
|
|
59 |
-rm -rf $(PREFIX)/objdictgen
|
|
60 |
-rm -f $(PREFIX)/bin/objdictgen
|
|
61 |
-rm -f $(PREFIX)/bin/objdictgen.py
|
|
62 |
|
|
63 |
clean:
|
|
64 |
|
|
65 |
mrproper: clean
|
|
66 |
ifeq ($(INSTALL_JAXE),jaxe)
|
|
67 |
-rm -f jaxe-unix-2.2.tar.gz
|
|
68 |
-rm -rf jaxe
|
|
69 |
endif
|
|
70 |
-rm -f Gnosis_Utils-1.2.1.tar.gz
|
|
71 |
-rm -rf gnosis
|
|
72 |
|
|
73 |
|