OSDN Git Service

Ok, this commit is _huge_ and its gonna change the world. I've
[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 # Note: The *64.o objects are empty when compiled without large file support.
28 #
29
30 # Note: Use the libpthreads of: flockfile.o ftrylockfile.o funlockfile.o
31 #       Also, maybe move __fsetlocking.o as well?
32
33 MSRC = stdio.c
34 MOBJ = fclose.o fflush.o fopen.o freopen.o perror.o remove.o \
35         setbuf.o setvbuf.o fgetc.o fgets.o fputc.o fputs.o \
36         getc.o getchar.o gets.o putc.o putchar.o puts.o \
37         ungetc.o fread.o fwrite.o fgetpos.o fseek.o fsetpos.o ftell.o \
38         rewind.o clearerr.o feof.o ferror.o \
39         fileno.o fdopen.o getw.o putw.o setbuffer.o setlinebuf.o fcloseall.o \
40         fopen64.o freopen64.o ftello64.o fseeko64.o fsetpos64.o fgetpos64.o \
41         __fbufsize.o __freading.o __fwriting.o __freadable.o __fwritable.o \
42         __flbf.o __fpurge.o __fpending.o _flushlbf.o \
43          fopencookie.o fmemopen.o open_memstream.o \
44         __fsetlocking.o flockfile.o ftrylockfile.o funlockfile.o \
45         _stdio_fopen.o _stdio_fread.o _stdio_fwrite.o _stdio_adjpos.o \
46         _stdio_lseek.o _stdio_init.o \
47         _stdio_fsfopen.o _stdio_fdout.o _uintmaxtostr.o _stdio_strerror_r.o \
48         getdelim.o getline.o ctermid.o
49
50 MSRC2= printf.c
51 MOBJ2=  vsnprintf.o vdprintf.o vasprintf.o vprintf.o vsprintf.o \
52         fprintf.o  snprintf.o  dprintf.o  asprintf.o  printf.o  sprintf.o
53
54 ifneq ($(USE_OLD_VFPRINTF),y)
55         MOBJ2 += _ppfs_init.o _ppfs_prepargs.o _ppfs_setargs.o \
56                  _ppfs_parsespec.o _do_one_spec.o vfprintf.o \
57                  _store_inttype.o _load_inttype.o \
58                  register_printf_function.o parse_printf_format.o
59 endif
60
61
62
63 ifeq ($(UCLIBC_HAS_FLOATS),y)
64         MOBJ2 += _dtostr.o
65 endif
66
67 MSRC3=scanf.c
68 MOBJ3=scanf.o sscanf.o fscanf.o vscanf.o vsscanf.o vfscanf.o
69
70 CSRC=popen.c tmpfile.c tmpnam.c tmpnam_r.c tempnam.c
71 ifeq ($(USE_OLD_VFPRINTF),y)
72         CSRC += old_vfprintf.c
73 endif
74 COBJS=$(patsubst %.c,%.o, $(CSRC))
75
76 OBJS=$(MOBJ) $(MOBJ2) $(MOBJ3) $(COBJS)
77
78 all: $(OBJS) $(LIBC)
79
80 $(LIBC): ar-target
81
82 ar-target: $(OBJS)
83         $(AR) $(ARFLAGS) $(LIBC) $(OBJS)
84
85 $(MOBJ): $(MSRC)
86         $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
87         $(STRIPTOOL) -x -R .note -R .comment $*.o
88
89 $(MOBJ2): $(MSRC2)
90         $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
91         $(STRIPTOOL) -x -R .note -R .comment $*.o
92
93 $(MOBJ3): $(MSRC3)
94         $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
95         $(STRIPTOOL) -x -R .note -R .comment $*.o
96
97 $(COBJS): %.o : %.c
98         $(CC) $(CFLAGS) -c $< -o $@
99         $(STRIPTOOL) -x -R .note -R .comment $*.o
100
101 $(OBJ): Makefile
102
103 clean:
104         rm -f *.[oa] *~ core
105