diff options
Diffstat (limited to 'test/mmap/Makefile')
-rw-r--r-- | test/mmap/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
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) + + |