This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
[RFC] list of tests in makefile.
- From: OndÅej BÃlka <neleai at seznam dot cz>
- To: libc-alpha at sourceware dot org
- Date: Tue, 28 May 2013 15:44:06 +0200
- Subject: [RFC] list of tests in makefile.
Hi,
Could it be possible to automate adding test so we do not have
unnecessarily modify makefile?
My first attempt was
tests = $(pathsubst %.c,%,$(wildcard test*.c))
But it did not work.
I can now generate list of files in makefile with script that is rougthly
following but there must be better solution.
(for I in tst*.c test*.c bug*.c ; do echo -n `basename $I .c` " " ;
done) | sort
Comments?