This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[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?


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]