From d4057a47cac54336b4d16f098f83e1f7b6e4ab6e Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Wed, 17 Aug 2005 02:29:50 +0000 Subject: start of some rpc tests --- test/rpc/Makefile | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 test/rpc/Makefile (limited to 'test/rpc/Makefile') diff --git a/test/rpc/Makefile b/test/rpc/Makefile new file mode 100644 index 000000000..58f04f634 --- /dev/null +++ b/test/rpc/Makefile @@ -0,0 +1,38 @@ +# Makefile for uClibc +# +# Copyright (C) 2005 Erik Andersen + +include ../Rules.mak + +# getrpcent_r_diff +TARGETS = getrpcent getrpcent_glibc getrpcent_diff + +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 -- cgit v1.2.3