494
|
1 |
#! gmake
|
|
2 |
|
|
3 |
#
|
|
4 |
# Copyright (C) 2006 Edouard TISSERANT
|
|
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) -IAnaGateCAN_API
|
|
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 |
|
|
49 |
TARGET_SOFILES = $(PREFIX)/lib/$(DRIVER)
|
|
50 |
|
|
51 |
all: driver
|
|
52 |
|
|
53 |
driver: $(DRIVER)
|
|
54 |
|
|
55 |
|
|
56 |
%o: %c
|
|
57 |
$(CC) $(CFLAGS) $(PROG_CFLAGS) ${PROGDEFINES} $(INCLUDES) -o $@ -c $<
|
|
58 |
|
|
59 |
%o: %cpp
|
|
60 |
$(CXX) $(CFLAGS) $(PROG_CFLAGS) ${PROGDEFINES} $(INCLUDES) -o $@ -c $<
|
|
61 |
|
|
62 |
$(DRIVER): $(OBJS)
|
|
63 |
$(LD) $(PROG_CFLAGS) -shared -o $@ \
|
|
64 |
-Wl,--export-all-symbols \
|
|
65 |
-Wl,--enable-auto-import \
|
|
66 |
-Wl,--whole-archive $^ \
|
|
67 |
-Wl,--no-whole-archive $(CAN_DLL_CFLAGS) \
|
|
68 |
AnaGateCAN_API/AnaGateCANDll.lib \
|
|
69 |
-Wl,--exclude-libs,ALL -lws2_32
|
|
70 |
|
|
71 |
install: libcanfestival_$(CAN_DRIVER).so
|
|
72 |
mkdir -p $(PREFIX)/lib/
|
|
73 |
cp $< $(PREFIX)/lib/
|
|
74 |
|
|
75 |
uninstall:
|
|
76 |
rm -f $(TARGET_SOFILES)
|
|
77 |
|
|
78 |
clean:
|
|
79 |
rm -f $(OBJS) $(DRIVER) $(SERVER).exe
|
|
80 |
|
|
81 |
mrproper: clean
|