summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-08-08 17:03:36 +0000
committerEric Andersen <andersen@codepoet.org>2001-08-08 17:03:36 +0000
commitc3bbc0eafdae7a50c46ec61f3352821b7c28ea85 (patch)
treea3f8e5d23017c4301813b6c6302d1277ed216efd /test
parentc4257d720039474be6804b20c4d133a65aa1d265 (diff)
This syncs things up with my local tree. Mainly changes installer
issues, and syns things (as far as I am willing) with Dave Schleef's tree. We may need to go another round or so, but we do seem to be converging...
Diffstat (limited to 'test')
-rw-r--r--test/ctype/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/ctype/Makefile b/test/ctype/Makefile
index b8b415c5d..ca689f33f 100644
--- a/test/ctype/Makefile
+++ b/test/ctype/Makefile
@@ -1,7 +1,7 @@
TESTDIR=../
include $(TESTDIR)/Rules.mak
-TARGETS=ctype
+TARGETS=ctype ctype_run
all: $(TARGETS)
ctype: ctype.c ../testsuite.h Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(CC)
@@ -12,7 +12,9 @@ ctype: ctype.c ../testsuite.h Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(
$(CC) $(CFLAGS) -c $< -o $@.o
$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
$(STRIPTOOL) -x -R .note -R .comment $@
- ./$@
+
+ctype_run:
+ ./ctype
-@ echo " "
clean:
rm -f *.[oa] *~ core $(TARGETS)