diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-06-07 19:44:37 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-06-07 19:44:37 +0000 |
commit | d6c19a6e1a1921de26de77e2f3e6a1eaa19b6e73 (patch) | |
tree | 2f5c9c599ebbf1f4ec618e1e762ac5d77bfba958 /test/misc/Makefile | |
parent | 000e5cc4360738d57ae0d9bd4267b676df7e56a4 (diff) |
Add in a test for outb (that currently fails)
Diffstat (limited to 'test/misc/Makefile')
-rw-r--r-- | test/misc/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
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) + + |