diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-08-24 21:23:58 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-08-24 21:23:58 +0000 |
commit | e44c028c15f596875449eed8885824add58e6865 (patch) | |
tree | e632ced907988152f41e0a8b75e4a0bb308eba61 /test/misc/Makefile | |
parent | 20dd264683eb83c0a3b701fa10137372ca71c066 (diff) |
Simple shared memory test
Diffstat (limited to 'test/misc/Makefile')
-rw-r--r-- | test/misc/Makefile | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/test/misc/Makefile b/test/misc/Makefile index 60476890f..ae49a865a 100644 --- a/test/misc/Makefile +++ b/test/misc/Makefile @@ -19,7 +19,7 @@ TESTDIR=../ include $(TESTDIR)/Rules.mak -TARGETS=outb +TARGETS=sem outb all: $(TARGETS) outb: outb.c ../testsuite.h Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(CC) @@ -32,6 +32,18 @@ outb: outb.c ../testsuite.h Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(CC $(STRIPTOOL) -x -R .note -R .comment $@ ./$@ -@ echo " " + +sem: sem.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(CC) + -@ echo "-------" + -@ echo " " + -@ echo "Compiling vs uClibc: " + -@ echo " " + $(CC) $(CFLAGS) -c $< -o $@.o + $(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) + $(STRIPTOOL) -x -R .note -R .comment $@ + -./$@ + -@ echo " " + clean: rm -f *.[oa] *~ core $(TARGETS) |