From d6c19a6e1a1921de26de77e2f3e6a1eaa19b6e73 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 7 Jun 2001 19:44:37 +0000 Subject: Add in a test for outb (that currently fails) --- test/misc/Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 test/misc/Makefile (limited to 'test/misc/Makefile') diff --git a/test/misc/Makefile b/test/misc/Makefile new file mode 100644 index 000000000..5e6ffb504 --- /dev/null +++ b/test/misc/Makefile @@ -0,0 +1,20 @@ +TESTDIR=../ +include $(TESTDIR)/Rules.mak + +TARGETS=outb +all: $(TARGETS) + +outb: outb.c ../testsuite.h Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(TESTCC) + -@ echo "-------" + -@ echo " " + -@ echo "Compiling vs uClibc: " + -@ echo " " + $(TESTCC) $(CFLAGS) -c $< -o $@.o + $(TESTCC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) + $(STRIPTOOL) -x -R .note -R .comment $@ + ./$@ + -@ echo " " +clean: + rm -f *.[oa] *~ core $(TARGETS) + + -- cgit v1.2.3