* src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
[fw/sdcc] / device / lib / pic16 / libio / usart / Makefile
1 #
2 # Makefile - Makefile to build pic16 USART communications library
3 #
4 # This file is part of the GNU PIC Library.
5 #
6 # January, 2005
7 # The GNU PIC Library is maintained by,
8 #       Vangelis Rokas <vrokas@otenet.gr>
9 #
10 #
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU Library General Public License
13 # as published by the Free Software Foundation; either version 2
14 # of the License, or (at your option) any later version.
15 #
16 # This library is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 # GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write to the Free Software
23 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24 #
25 #
26 # $Id$
27 #
28
29 include ../Makefile.rules
30
31 SRCS    =       uclose \
32                 ugetc \
33                 uopen \
34                 usartd \
35                 ubusy \
36                 udrdy \
37                 ugets \
38                 uputc \
39                 uputs
40
41 #ubaud 
42
43 CFILES  = $(patsubst %,%.c,$(SRCS))
44 OFILES  = $(patsubst %.c,%.o,$(CFILES))
45
46
47 DEBUG=
48 #COMPILE_FLAGS   += --pomit-config-words --pomit-ivt --no-peep
49 COMPILE_FLAGS   += $(DEBUG)
50
51 CFILES  = $(patsubst %,%.c,$(SRCS))
52 OFILES  = $(patsubst %.c,%.o,$(CFILES))
53
54 %.o: %.c
55         $(CC) $(CFLAGS) $(COMPILE_FLAGS) -c $<
56
57 build-library: $(OFILES)
58