dec21140A ethernet driver for virtualpc, contributed by nicolas tittley.
[minix.git] / lib / ansi / Makefile.in
blob7c9c348985e1a96a5a62f51a089c9c64bf7ea352
1 # Makefile for lib/ansi.
3 # This Makefile compiles part of the C library, the functions required by the
4 # ANSI C standard. This Makefile, and those in the other subdirectories use
5 # a little known feature of make, the ability to refer to a file within a
6 # library. The construct abs.o' names the file 'abs.o' contained
7 # in 'libc.a'. So the rule
9 # abs.o: abs.c
10 # cc -c abs.c
11 # aal cr libc.a abs.o
12 # rm abs.o
14 # compiles abs.c and installs the result abs.o in libc.a if abs.c is newer
15 # than the abs.o in the library. This Makefile does not work like this
16 # precisely, it first compiles all changed source files and than installs
17 # them all in one 'aal' command.
19 # Many of the string functions in this directory are not used, because the
20 # have fast assembly implementations.
22 CFLAGS="-O -D_MINIX -D_POSIX_SOURCE -D__USG"
24 LIBRARIES=libc
25 libc_FILES=" \
26 abort.c \
27 abs.c \
28 assert.c \
29 atexit.c \
30 atof.c \
31 atoi.c \
32 atol.c \
33 bsearch.c \
34 calloc.c \
35 chartab.c \
36 clock.c \
37 difftime.c \
38 div.c \
39 errlist.c \
40 exit.c \
41 ext_comp.c \
42 getenv.c \
43 isalnum.c \
44 isalpha.c \
45 isascii.c \
46 iscntrl.c \
47 isdigit.c \
48 isgraph.c \
49 islower.c \
50 isprint.c \
51 ispunct.c \
52 isspace.c \
53 isupper.c \
54 isxdigit.c \
55 labs.c \
56 ldiv.c \
57 localeconv.c \
58 malloc.c \
59 mblen.c \
60 mbstowcs.c \
61 mbtowc.c \
62 misc.c \
63 qsort.c \
64 raise.c \
65 rand.c \
66 setlocale.c \
67 sigmisc.c \
68 signal.c \
69 strcoll.c \
70 strcspn.c \
71 strerror.c \
72 strpbrk.c \
73 strspn.c \
74 strstr.c \
75 strtok.c \
76 strtol.c \
77 strxfrm.c \
78 system.c \
79 tolower.c \
80 toupper.c \
81 wcstombs.c \
82 wctomb.c"
84 TYPE=both