diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-07-01 00:02:24 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-07-01 00:02:24 +0000 |
commit | 095ca55f2edd965fa9f3a5d3a4c98a7d7e852ed9 (patch) | |
tree | 074540e563757454c2c4adce2e3799a5ab766db8 /test/mmap | |
parent | de8b8b0b0bdd0f6012187dfc3046cac098000bb0 (diff) |
remove old depend on Config and make it so that a test failure aborts the make process
Diffstat (limited to 'test/mmap')
-rw-r--r-- | test/mmap/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/mmap/Makefile b/test/mmap/Makefile index ce786c955..24175aa00 100644 --- a/test/mmap/Makefile +++ b/test/mmap/Makefile @@ -21,7 +21,7 @@ include ../Rules.mak TARGETS=mmap all: $(TARGETS) -mmap: mmap.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak +mmap: mmap.c Makefile $(TESTDIR)/Rules.mak -@ echo "-------" -@ echo " " -@ echo "Compiling vs uClibc: " @@ -29,7 +29,7 @@ mmap: mmap.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(CC) $(CFLAGS) -c $< -o $@.o $(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) $(STRIPTOOL) -x -R .note -R .comment $@ - -./$@ + ./$@ -@ echo " " clean: |