diff options
Diffstat (limited to 'test/setjmp/Makefile')
-rw-r--r-- | test/setjmp/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/setjmp/Makefile b/test/setjmp/Makefile new file mode 100644 index 000000000..45721ef90 --- /dev/null +++ b/test/setjmp/Makefile @@ -0,0 +1,22 @@ +TESTDIR=../ +include $(TESTDIR)/Rules.mak + + +TARGETS=setjmp_test +all: $(TARGETS) + +setjmp_test: setjmp_test.c 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) + + |