diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-10-18 21:06:41 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-10-18 21:06:41 +0000 |
commit | a6a89eb4477289063cb9ef1cc414b9e748f877f9 (patch) | |
tree | 8b2a8c4f512601a8ccae41fae9d01fbeb64d07d3 /test/signal/Makefile | |
parent | 21006ae36aab6a4e4156973dd5dcd7078dadc79e (diff) |
Signal test. One test written and already found a bug.
-Erik
Diffstat (limited to 'test/signal/Makefile')
-rw-r--r-- | test/signal/Makefile | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/test/signal/Makefile b/test/signal/Makefile new file mode 100644 index 000000000..b41d389f8 --- /dev/null +++ b/test/signal/Makefile @@ -0,0 +1,49 @@ +TOPDIR=../../ +include $(TOPDIR)Rules.mak + +# Check if 'ls -sh' works or not +LSFLAGS = $(shell if ls -sh >/dev/null 2>&1; \ + then echo "-sh"; else echo "-s" ; fi) + +XCFLAGS = -Wall -Os -fomit-frame-pointer -fno-builtin -nostdinc \ + -I$(TOPDIR)include -I/usr/include/linux +XLDFLAGS = -nostdlib -s -gc-sections +EXTRA_LIBS=$(TOPDIR)libc.a + +YCFLAGS = -Wall -Os -fomit-frame-pointer +YLDFLAGS = -s --static + +# Allow alternative stripping tools to be used... +ifndef $(STRIPTOOL) + STRIPTOOL = strip +endif +STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $@ + +TARGETS=signal signal_glibc + +all: $(TARGETS) + +signal: signal.c Makefile $(TOPDIR)libc.a + -@ echo "-------" + -@ echo " " + -@ echo "Compiling vs uCLibc: " + -@ echo " " + $(CC) $(XCFLAGS) -c $< -o $@.o + $(CC) $(XLDFLAGS) $@.o -o $@ $(EXTRA_LIBS) + -./$@ + -@ echo " " + +signal_glibc: signal.c Makefile $(TOPDIR)libc.a + -@ echo "-------" + -@ echo " " + -@ echo "Compiling vs GNU libc: " + -@ echo " " + $(CC) $(YCFLAGS) -c $< -o $@.o + $(CC) $(YLDFLAGS) --static $@.o -o $@ + -./$@ + -@ echo " " + +clean: + rm -f *.[oa] *~ core $(TARGETS) + + |