drivers/timers_win32/Makefile
author greg
Mon, 10 Sep 2007 08:04:32 +0200
changeset 267 96c688ebcde7
permissions -rwxr-xr-x
Add win32 target (--can=win32) to compile with msys and mingw32
267
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
     1
#! gmake
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
     2
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
     3
#
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
     4
# Copyright (C) 2006 Laurent Bessard
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
     5
# 
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
     6
# This file is part of canfestival, a library implementing the canopen
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
     7
# stack
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
     8
# 
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
     9
# This library is free software; you can redistribute it and/or
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    10
# modify it under the terms of the GNU Lesser General Public
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    11
# License as published by the Free Software Foundation; either
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    12
# version 2.1 of the License, or (at your option) any later version.
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    13
# 
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    14
# This library is distributed in the hope that it will be useful,
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    15
# but WITHOUT ANY WARRANTY; without even the implied warranty of
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    16
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    17
# Lesser General Public License for more details.
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    18
# 
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    19
# You should have received a copy of the GNU Lesser General Public
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    20
# License along with this library; if not, write to the Free Software
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    21
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    22
# 
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    23
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    24
CC = mingw32-g++
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    25
OPT_CFLAGS = -O2
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    26
CFLAGS = $(OPT_CFLAGS)
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    27
PROG_CFLAGS = 
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    28
OS_NAME = MINGW32
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    29
ARCH_NAME = x86
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    30
PREFIX = /usr/local
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    31
TARGET = win32
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    32
CAN_DRIVER = can_peak_win32
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    33
TIMERS_DRIVER = timers_win32
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    34
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    35
INCLUDES = -I../../include -I../../include/$(TARGET) -I../../include/$(CAN_DRIVER) -I../../include/$(TIMERS_DRIVER)
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    36
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    37
OBJS = $(TIMERS_DRIVER).o
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    38
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    39
SRC_HFILES = ../../include/$(TIMERS_DRIVER)/timerscfg.h
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    40
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    41
TARGET_HFILES = $(PREFIX)/include/canfestival/timerscfg.h
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    42
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    43
all: driver
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    44
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    45
driver: $(OBJS)
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    46
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    47
%o: %cpp
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    48
	$(CC) $(CFLAGS) $(PROG_CFLAGS) ${PROGDEFINES} $(INCLUDES) -o $@ -c $<
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    49
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    50
install:
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    51
	mkdir -p $(PREFIX)/include/canfestival
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    52
	cp $(SRC_HFILES) $(PREFIX)/include/canfestival
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    53
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    54
uninstall:
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    55
	rm -f $(TARGET_HFILES)
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    56
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    57
clean:
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    58
	rm -f $(OBJS)
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    59
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    60
mrproper: clean
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    61
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
diff changeset
    62