Magellan Linux

Contents of /trunk/mkinitrd-magellan/klibc/usr/klibc/tests/Kbuild

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1122 - (show annotations) (download)
Wed Aug 18 21:11:40 2010 UTC (13 years, 8 months ago) by niro
File size: 1562 byte(s)
-updated to klibc-1.5.19
1 #
2 # Kbuild file for all test files
3 #
4
5 test-files := $(wildcard $(srctree)/$(src)/*.c)
6 test-files := $(notdir $(test-files))
7
8 # This particular file uses a bunch of formats gcc don't know of, in order
9 # to test the full range of our vsnprintf() function. This outputs a bunch
10 # of useless warnings unless we tell it not to.
11 KLIBCCFLAGS_testvsnp.o := -Wno-format
12
13 static-y := $(test-files:.c=)
14 shared-y := $(addsuffix .shared, $(static-y))
15
16 environ.shared-y := environ.o
17 fcntl.shared-y := fcntl.o
18 fnmatch.shared-y := fnmatch.o
19 getopttest.shared-y := getopttest.o
20 getoptlong.shared-y := getoptlong.o
21 getpagesize.shared-y := getpagesize.o
22 hello.shared-y := hello.o
23 idtest.shared-y := idtest.o
24 malloctest.shared-y := malloctest.o
25 malloctest2.shared-y := malloctest2.o
26 memstrtest.shared-y := memstrtest.o
27 microhello.shared-y := microhello.o
28 minihello.shared-y := minihello.o
29 mmaptest.shared-y := mmaptest.o
30 nfs_no_rpc.shared-y := nfs_no_rpc.o
31 opentest.shared-y := opentest.o
32 pipetest.shared-y := pipetest.o
33 rtsig.shared-y := rtsig.o
34 select.shared-y := select.o
35 setenvtest.shared-y := setenvtest.o
36 setjmptest.shared-y := setjmptest.o
37 sigint.shared-y := sigint.o
38 socket.shared-y := socket.o
39 stat.shared-y := stat.o
40 statfs.shared-y := statfs.o
41 strlcpycat.shared-y := strlcpycat.o
42 strtoimax.shared-y := strtoimax.o
43 strtotime.shared-y := strtotime.o
44 testrand48.shared-y := testrand48.o
45 testvsnp.shared-y := testvsnp.o
46 vfork.shared-y := vfork.o
47
48 # Cleaning
49 clean-files := $(static-y) $(shared-y) \
50 $(addsuffix .g, $(static-y) $(shared-y)) \
51 $(test-files:.c=.o)