author | etisserant |
Tue, 17 Apr 2007 16:13:22 +0200 | |
changeset 166 | b6fbc1c59a44 |
parent 158 | b505f7116a1c |
child 191 | 1e6e3d261b8f |
permissions | -rw-r--r-- |
26 | 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 |
|
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
40
diff
changeset
|
32 |
ENABLE_DLL_DRIVERS=SUB_ENABLE_DLL_DRIVERS |
26 | 33 |
|
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
40
diff
changeset
|
34 |
INCLUDES = -I../../include -I../../include/$(TARGET) -I../../include/$(CAN_DRIVER) |
26 | 35 |
|
36 |
OBJS = $(CAN_DRIVER).o |
|
37 |
||
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
40
diff
changeset
|
38 |
ifeq ($(ENABLE_DLL_DRIVERS),1) |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
40
diff
changeset
|
39 |
CFLAGS += -fPIC |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
40
diff
changeset
|
40 |
DRIVER = libcanfestival_$(CAN_DRIVER).so |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
40
diff
changeset
|
41 |
else |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
40
diff
changeset
|
42 |
DRIVER = $(OBJS) |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
40
diff
changeset
|
43 |
endif |
26 | 44 |
|
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
40
diff
changeset
|
45 |
TARGET_SOFILES = $(PREFIX)/lib/$(DRIVER) |
26 | 46 |
|
47 |
all: driver |
|
48 |
||
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
40
diff
changeset
|
49 |
driver: $(DRIVER) |
26 | 50 |
|
51 |
%o: %c |
|
52 |
$(CC) $(CFLAGS) $(PROG_CFLAGS) ${PROGDEFINES} $(INCLUDES) -o $@ -c $< |
|
53 |
||
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
40
diff
changeset
|
54 |
libcanfestival_$(CAN_DRIVER).so: $(OBJS) |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
40
diff
changeset
|
55 |
gcc -shared -Wl,-soname,libcanfestival_$(CAN_DRIVER).so -o $@ $< |
26 | 56 |
|
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
40
diff
changeset
|
57 |
install: libcanfestival_$(CAN_DRIVER).so |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
40
diff
changeset
|
58 |
mkdir -p $(PREFIX)/lib/ |
158
b505f7116a1c
Moved DS-301 PDF into objdictgen. Fixed installation on linux. Now TestMasterSlave is also installed in $PREFIX/bin.
etisserant
parents:
145
diff
changeset
|
59 |
cp $< $(PREFIX)/lib/ |
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
40
diff
changeset
|
60 |
|
26 | 61 |
uninstall: |
62 |
rm -f $(TARGET_HFILES) |
|
63 |
||
64 |
clean: |
|
40
ddeeb217ed71
Updated configure and fixes in Makefiles.in for cygwin compiling.
etisserant
parents:
26
diff
changeset
|
65 |
rm -f $(OBJS) |
26 | 66 |
|
67 |
mrproper: clean |