OSDN Git Service

39e5b2d4fb05bbe1154f9ee6dde739510450b0fc
[uclinux-h8/uClibc.git] / test / stat / Makefile
1 # Makefile for uClibc
2 #
3 # Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
4 #
5 # This program is free software; you can redistribute it and/or modify it under
6 # the terms of the GNU Library General Public License as published by the Free
7 # Software Foundation; either version 2 of the License, or (at your option) any
8 # later version.
9 #
10 # This program is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 # FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
13 # details.
14 #
15 # You should have received a copy of the GNU Library General Public License
16 # along with this program; if not, write to the Free Software Foundation, Inc.,
17 # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
19 TESTDIR=../
20 include $(TESTDIR)/Rules.mak
21
22 CFLAGS64=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
23
24
25 TARGETS=stat_diff stat64_diff
26
27 all: $(TARGETS)
28
29 stat_source:
30         -@ $(RM) $(TARGETS)
31         -@ echo "-------"
32         -@ echo "stat.c source: "
33         -@ echo " "
34         -@ cat stat.c
35         -@ echo " "
36
37 stat: stat.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(CC)
38         -@ echo "-------"
39         -@ echo " "
40         -@ echo "Compiling vs uClibc: "
41         -@ echo " "
42         $(CC) $(CFLAGS) -c $< -o $@.o
43         $(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
44         $(STRIPTOOL) -x -R .note -R .comment $@
45         -./$@ stat.c > $@.out
46         -@ echo " "
47
48 stat_glibc: stat.c Makefile
49         -@ echo "-------"
50         -@ echo " "
51         -@ echo "Compiling vs GNU libc: "
52         -@ echo " "
53         $(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
54         $(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
55         $(STRIPTOOL) -x -R .note -R .comment $@
56         -./$@ stat.c > $@.out
57         -@ echo " "
58
59 stat_diff: stat stat_glibc
60         -@ echo "-------"
61         -@ echo " "
62         -@ echo "Diffing stat output: "
63         -@ echo " "
64         -diff -u stat_glibc.out stat.out
65         -@ echo " "
66
67 stat64: stat.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(CC)
68         -@ echo "-------"
69         -@ echo " "
70         -@ echo "Compiling vs uClibc: "
71         -@ echo " "
72         $(CC) $(CFLAGS) $(CFLAGS64) -c $< -o $@.o
73         $(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
74         $(STRIPTOOL) -x -R .note -R .comment $@
75         -./$@ stat.c > $@.out
76         -@ echo " "
77
78 stat64_glibc: stat.c Makefile
79         -@ echo "-------"
80         -@ echo " "
81         -@ echo "Compiling vs GNU libc: "
82         -@ echo " "
83         $(HOSTCC) $(GLIBC_CFLAGS) $(CFLAGS64) -c $< -o $@.o
84         $(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
85         $(STRIPTOOL) -x -R .note -R .comment $@
86         -./$@ stat.c > $@.out
87         -@ echo " "
88
89 stat64_diff: stat64 stat64_glibc
90         -@ echo "-------"
91         -@ echo " "
92         -@ echo "Diffing stat64 output: "
93         -@ echo " "
94         -diff -u stat64_glibc.out stat64.out
95         -@ echo " "
96
97 clean:
98         $(RM) *.[oa] *~ core stat stat_glibc stat_glibc.out stat.out \
99                 stat64 stat64_glibc stat64_glibc.out stat64.out
100
101