]> rtime.felk.cvut.cz Git - CanFestival-3.git/blob - drivers/can_peak_win32/Makefile.in
add cancfg.h dependency to rebuild can_peak_win32 driver
[CanFestival-3.git] / drivers / can_peak_win32 / 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 CXX = SUB_CXX
26 LD = SUB_LD
27 OPT_CFLAGS = -O2
28 CFLAGS = SUB_OPT_CFLAGS
29 PROG_CFLAGS = SUB_PROG_CFLAGS
30 PREFIX = SUB_PREFIX
31 TARGET = SUB_TARGET
32 CAN_DRIVER = SUB_CAN_DRIVER
33 TIMERS_DRIVER = SUB_TIMERS_DRIVER
34 ENABLE_DLL_DRIVERS=SUB_ENABLE_DLL_DRIVERS
35 CAN_DLL_CFLAGS=SUB_CAN_DLL_CFLAGS
36
37 INCLUDES = -I../../include -I../../include/$(TARGET) -I../../include/$(CAN_DRIVER)
38
39 OBJS = $(CAN_DRIVER).o
40
41 ifeq ($(ENABLE_DLL_DRIVERS),1)
42 CFLAGS += -fPIC
43 DRIVER = cyg$(CAN_DRIVER).dll
44 else
45 DRIVER = $(OBJS)
46 endif
47
48 TARGET_SOFILES = $(PREFIX)/lib/$(DRIVER)
49
50 all: driver
51
52 driver: $(DRIVER)
53
54 %o: %c cancfg.h
55         $(CC) $(CFLAGS) $(PROG_CFLAGS) ${PROGDEFINES} $(INCLUDES) -o $@ -c $<
56
57 cyg$(CAN_DRIVER).dll: $(OBJS)
58         $(LD) $(PROG_CFLAGS) -shared -o $@ \
59         -Wl,--export-all-symbols \
60         -Wl,--enable-auto-import \
61         -Wl,--whole-archive $< \
62         -Wl,--no-whole-archive $(CAN_DLL_CFLAGS) \
63         -Wl,--exclude-libs,ALL
64                 
65 install: libcanfestival_$(CAN_DRIVER).so
66         mkdir -p $(PREFIX)/lib/
67         cp $< $(PREFIX)/lib/
68                 
69 uninstall:
70         rm -f $(TARGET_SOFILES)
71
72 clean:
73         rm -f $(OBJS)
74
75 mrproper: clean