drivers/win32/Makefile
changeset 282 6afe145df950
parent 281 685d9a26e4f9
child 283 e0b3096230e5
equal deleted inserted replaced
281:685d9a26e4f9 282:6afe145df950
     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 = mingw32-g++
       
    25 OPT_CFLAGS = -O2
       
    26 CFLAGS = $(OPT_CFLAGS)
       
    27 PROG_CFLAGS = 
       
    28 OS_NAME = MINGW32
       
    29 ARCH_NAME = x86
       
    30 PREFIX = /usr/local
       
    31 TARGET = win32
       
    32 CAN_DRIVER = can_peak_win32
       
    33 TIMERS_DRIVER = timers_win32
       
    34 ENABLE_DLL_DRIVERS = 1
       
    35 
       
    36 INCLUDES = -I../../include -I../../include/$(TARGET) -I../../include/$(TIMERS_DRIVER)
       
    37 
       
    38 OBJS = $(TARGET).o
       
    39 
       
    40 # add timers driver if any
       
    41 ifneq ($(TIMERS_DRIVER),timers_)
       
    42 OBJS += ../$(TIMERS_DRIVER)/$(TIMERS_DRIVER).o
       
    43 endif
       
    44 
       
    45 SRC_HFILES = ../../include/$(TARGET)/applicfg.h ../../include/$(TARGET)/canfestival.h
       
    46 
       
    47 TARGET_HFILES = $(PREFIX)/include/$(TARGET)/applicfg.h $(PREFIX)/include/$(TARGET)/canfestival.h
       
    48 
       
    49 all: driver
       
    50 
       
    51 driver: $(OBJS)
       
    52 
       
    53 
       
    54 %o: %cpp
       
    55 	$(CC) $(CFLAGS) $(PROG_CFLAGS) ${PROGDEFINES} $(INCLUDES) -o $@ -c $<
       
    56 
       
    57 #../$(TIMERS_DRIVER)/$(TIMERS_DRIVER).o:
       
    58 #	$(MAKE) -C ../$(TIMERS_DRIVER) driver
       
    59 
       
    60 #../$(CAN_DRIVER)/$(CAN_DRIVER).o:
       
    61 #	$(MAKE) -C ../$(CAN_DRIVER) driver
       
    62 
       
    63 libcanfestival_$(TARGET).a: $(OBJS)
       
    64 	@echo Building [libcanfestival_$(TARGET).a]
       
    65 	ar rc $@ $(OBJS)
       
    66 	ranlib $@
       
    67 
       
    68 install: libcanfestival_$(TARGET).a
       
    69 	mkdir -p $(PREFIX)/lib/
       
    70 	mkdir -p $(PREFIX)/include/canfestival
       
    71 	cp libcanfestival_$(TARGET).a $(PREFIX)/lib/
       
    72 	cp $(SRC_HFILES) $(PREFIX)/include/canfestival
       
    73 
       
    74 uninstall:
       
    75 	rm -f $(PREFIX)/lib/libcanfestival_$(TARGET).a
       
    76 	rm -f $(TARGET_HFILES)
       
    77 
       
    78 clean:
       
    79 	rm -f $(OBJS)
       
    80 	rm -f libcanfestival_$(TARGET).a
       
    81 
       
    82 mrproper: clean
       
    83 
       
    84