From fce6446b7eff58d4c910e8938869b431d172db25 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Fri, 25 May 2001 23:07:35 +0000 Subject: The mmap syscall has 6 arguments, which has various implementations on different architectures. --- test/mmap/Makefile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 test/mmap/Makefile (limited to 'test/mmap/Makefile') diff --git a/test/mmap/Makefile b/test/mmap/Makefile new file mode 100644 index 000000000..82fd5ee1b --- /dev/null +++ b/test/mmap/Makefile @@ -0,0 +1,22 @@ +TESTDIR=../ +include $(TESTDIR)/Rules.mak + + +TARGETS=mmap +all: $(TARGETS) + +mmap: mmap.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) + + -- cgit v1.2.3