drivers/can_peak_win32/Makefile.in
changeset 38 9b5bb1dcb4f5
child 41 e70439f50539
equal deleted inserted replaced
37:c6ff23a48232 38:9b5bb1dcb4f5
       
     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 BINUTILS_PREFIX = SUB_BINUTILS_PREFIX
       
    33 
       
    34 INCLUDES = -I../../include -I../../include/$(TARGET) -I../../include/$(CAN_DRIVER) -I../../include/$(TIMERS_DRIVER)
       
    35 
       
    36 OBJS = $(CAN_DRIVER).o
       
    37 
       
    38 SRC_HFILES = ../../include/$(CAN_DRIVER)/cancfg.h
       
    39 
       
    40 TARGET_HFILES = $(PREFIX)/include/canfestival/cancfg.h
       
    41 
       
    42 all: driver
       
    43 
       
    44 driver: $(OBJS)
       
    45 
       
    46 %o: %c
       
    47 	$(CC) $(CFLAGS) $(PROG_CFLAGS) ${PROGDEFINES} $(INCLUDES) -o $@ -c $<
       
    48 
       
    49 install:
       
    50 	mkdir -p $(PREFIX)/include/canfestival
       
    51 	cp $(SRC_HFILES) $(PREFIX)/include/canfestival
       
    52 
       
    53 uninstall:
       
    54 	rm -f $(TARGET_HFILES)
       
    55 
       
    56 clean:
       
    57 	-\rm $(OBJS)
       
    58 
       
    59 mrproper: clean