OSDN Git Service

Update my email address. I am no longer andersen@lineo.com
[uclinux-h8/uClibc.git] / libc / stdio / Makefile
1 # Makefile for uClibc
2 #
3 # Copyright (C) 2000 by Lineo, inc.
4 # Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
5 #
6 # This program is free software; you can redistribute it and/or modify it under
7 # the terms of the GNU Library General Public License as published by the Free
8 # Software Foundation; either version 2 of the License, or (at your option) any
9 # later version.
10 #
11 # This program is distributed in the hope that it will be useful, but WITHOUT
12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 # FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
14 # details.
15 #
16 # You should have received a copy of the GNU Library General Public License
17 # along with this program; if not, write to the Free Software Foundation, Inc.,
18 # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #
20 # Derived in part from the Linux-8086 C library, the GNU C Library, and several
21 # other sundry sources.  Files within this library are copyright by their
22 # respective copyright holders.
23
24 TOPDIR=../../
25 include $(TOPDIR)Rules.mak
26
27 MSRC=stdio.c
28 MOBJ=_stdio_init.o _alloc_stdio_buffer.o _free_stdio_buffer_of_file.o \
29      _free_stdio_stream.o clearerr.o feof.o ferror.o fileno.o setbuffer.o \
30      setvbuf.o setbuf.o setlinebuf.o fclose.o _fopen.o fopen.o freopen.o \
31      fdopen.o fflush.o fsfopen.o fseek.o rewind.o ftell.o fgetpos.o fsetpos.o \
32      fputc.o fgetc.o fgets.o gets.o fputs.o puts.o ungetc.o fread.o fwrite.o \
33      getchar.o putchar.o _uClibc_fwrite.o _uClibc_fread.o fopen64.o getc.o putc.o
34
35 MSRC2=printf.c
36 MOBJ2=printf.o sprintf.o fprintf.o vprintf.o vsprintf.o vfprintf.o snprintf.o \
37      vsnprintf.o asprintf.o vfnprintf.o fnprintf.o vdprintf.o
38
39 MSRC3=scanf.c
40 MOBJ3=scanf.o sscanf.o fscanf.o vscanf.o vsscanf.o vfscanf.o
41
42 CSRC=popen.c perror.c remove.c getdelim.c getline.c tmpfile.c tmpnam.c \
43      tmpnam_r.c tempnam.c ctermid.c
44 COBJS=$(patsubst %.c,%.o, $(CSRC))
45 OBJS=$(MOBJ) $(MOBJ2) $(MOBJ3) $(COBJS)
46
47
48 all: $(OBJS) $(LIBC)
49
50 $(LIBC): ar-target
51
52 ar-target: $(OBJS)
53         $(AR) $(ARFLAGS) $(LIBC) $(OBJS)
54
55 $(MOBJ): $(MSRC)
56         $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
57         $(STRIPTOOL) -x -R .note -R .comment $*.o
58
59 $(MOBJ2): $(MSRC2)
60         $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
61         $(STRIPTOOL) -x -R .note -R .comment $*.o
62
63 $(MOBJ3): $(MSRC3)
64         $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
65         $(STRIPTOOL) -x -R .note -R .comment $*.o
66
67 $(COBJS): %.o : %.c
68         $(CC) $(CFLAGS) -c $< -o $@
69         $(STRIPTOOL) -x -R .note -R .comment $*.o
70
71 $(OBJ): Makefile
72
73 clean:
74         rm -f *.[oa] *~ core
75