diff options
Diffstat (limited to 'test/rpc/Makefile')
-rw-r--r-- | test/rpc/Makefile | 40 |
1 files changed, 5 insertions, 35 deletions
diff --git a/test/rpc/Makefile b/test/rpc/Makefile index 58f04f634..779300199 100644 --- a/test/rpc/Makefile +++ b/test/rpc/Makefile @@ -1,38 +1,8 @@ -# Makefile for uClibc -# -# Copyright (C) 2005 Erik Andersen <andersen@uclibc.org> +# uClibc rpc tests +# Licensed under the GNU Library General Public License, see COPYING.LIB -include ../Rules.mak +TESTS := getrpcent -# getrpcent_r_diff -TARGETS = getrpcent getrpcent_glibc getrpcent_diff +include ../Test.mak -all: $(TARGETS) - -getrpcent: getrpcent.c Makefile $(TESTDIR)/Rules.mak - -@ echo "-------" - -@ echo " " - -@ echo "Compiling $@ vs uClibc: " - -@ echo " " - $(CC) $(CFLAGS) -c $< -o $@.o - $(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) - $(STRIPTOOL) -x -R .note -R .comment $@ - ./$@ > getrpcent.out - -@ echo " " - -getrpcent_glibc: getrpcent.c Makefile $(TESTDIR)/Rules.mak - -@ echo "-------" - -@ echo " " - -@ echo "Compiling $@ vs glibc: " - -@ echo " " - $(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o - $(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@ - $(STRIPTOOL) -x -R .note -R .comment $@ - ./$@ > getrpcent_glibc.out - -@ echo " " - -getrpcent_diff: getrpcent getrpcent_glibc - diff -u getrpcent_glibc.out getrpcent.out - -clean: - $(RM) *.[oa] *~ core $(TARGETS) *.out +DODIFF_getrpcent := 1 |