]> rtime.felk.cvut.cz Git - CanFestival-3.git/blob - objdictgen/Makefile.in
Moved DS-301 PDF into objdictgen. Fixed installation on linux. Now TestMasterSlave...
[CanFestival-3.git] / objdictgen / Makefile.in
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
26 all: gnosis
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
36 install: gnosis
37         mkdir -p $(PREFIX)/objdictgen
38         cp -r *.py* *.sh config doc doc_index examples gnosis $(PREFIX)/objdictgen
39         chmod -R a+r $(PREFIX)/objdictgen
40         mkdir -p $(PREFIX)/bin
41         ln -sf $(PREFIX)/objdictgen/objdictedit.py $(PREFIX)/bin/objdictedit
42         chmod 755 $(PREFIX)/objdictgen/objdictedit.py
43         ln -sf $(PREFIX)/objdictgen/objdictgen.py $(PREFIX)/bin/objdictgen
44         chmod 755 $(PREFIX)/objdictgen/objdictgen.py
45
46 uninstall:
47         rm -rf $(PREFIX)/objdictgen
48         rm -f $(PREFIX)/bin/objdictedit
49         rm -f $(PREFIX)/bin/objdictgen
50
51 clean:
52
53 mrproper: clean
54         rm -f Gnosis_Utils-1.2.1.tar.gz
55         rm -rf gnosis
56
57