]> rtime.felk.cvut.cz Git - CanFestival-3.git/blob - drivers/can_vscom/Makefile.in
5491d537da78a6552af895d819a3036d2ae9672a
[CanFestival-3.git] / drivers / can_vscom / 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 CC = SUB_CC
25 OPT_CFLAGS = -O2
26 CFLAGS = SUB_OPT_CFLAGS
27 PROG_CFLAGS = SUB_PROG_CFLAGS
28 PREFIX = SUB_PREFIX
29 TARGET = SUB_TARGET
30 CAN_DRIVER = SUB_CAN_DRIVER
31 TIMERS_DRIVER = SUB_TIMERS_DRIVER
32 ENABLE_DLL_DRIVERS=SUB_ENABLE_DLL_DRIVERS
33 CAN_DLL_CFLAGS=SUB_CAN_DLL_CFLAGS -L.
34
35 # define target specific environment
36 ifeq ($(OS),CYGWIN)
37 DLL_TYPE=dll
38 CAN_VSCOM_DLL_FLAGS=-Wl,--export-all-symbols -Wl,--exclude-libs,ALL
39 else
40 DLL_TYPE=so
41 CAN_VSCOM_DLL_FLAGS=-Wl,-soname,libcanfestival_$(CAN_DRIVER).so
42 endif
43
44 INCLUDES = -I../../include -I../../include/$(TARGET) -I../../include/$(CAN_DRIVER)
45
46 OBJS = $(CAN_DRIVER).o
47
48 ifeq ($(ENABLE_DLL_DRIVERS),1)
49 CFLAGS += -fPIC
50 DRIVER = libcanfestival_$(CAN_DRIVER).$(DLL_TYPE)
51 else
52 DRIVER = $(OBJS)
53 endif
54
55 TARGET_SOFILES = $(PREFIX)/lib/$(DRIVER)
56
57 all: driver
58
59 vs_can_api.h:
60         wget http://www.vscom.de/download/multiio/linux/driver/VSCAN_API_1_0.zip
61         @if which unzip &> /dev/null; then \
62         unzip VSCAN_API_1_0.zip; \
63         chmod +x vs_can_api.dll; \
64         else \
65         echo "No unzip found. Please decompress VSCAN_API_1_0.zip manually"; \
66         exit 1; \
67         fi;
68
69 driver: vs_can_api.h $(DRIVER)
70
71 %o: %c
72         $(CC) $(CFLAGS) $(PROG_CFLAGS) ${PROGDEFINES} $(INCLUDES) -o $@ -c $<
73
74 libcanfestival_$(CAN_DRIVER).$(DLL_TYPE): $(OBJS)
75         $(CC) -shared $(CAN_VSCOM_DLL_FLAGS) -o $@ $< $(CAN_DLL_CFLAGS)
76
77 install: libcanfestival_$(CAN_DRIVER).so
78         mkdir -p $(PREFIX)/lib/
79         cp $< $(PREFIX)/lib/
80                 
81 uninstall:
82         rm -f $(TARGET_SOFILES)
83
84 clean:
85         rm -f $(OBJS)
86         rm -f *.zip
87         rm -f libvs_can_api*
88         rm -f vs_can_api*
89
90 mrproper: clean