]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - tools/regression/usr.bin/make/variables/modifier_M/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / tools / regression / usr.bin / make / variables / modifier_M / Makefile
1 # $FreeBSD$
2 #
3 # Test the M modifier.
4 #
5 FILES   = \
6                 main.c globals.h \
7                 util.c util.h \
8                 map.c map.h \
9                 parser.y lexer.l \
10                 cmdman.1 format.5
11 test1:
12         @echo "all files: ${FILES}"
13         @echo "cfiles: ${FILES:M*.c}"
14         @echo "hfiles: ${FILES:M*.h}"
15         @echo "grammar and lexer: ${FILES:M*.[ly]}"
16         @echo "man page: ${FILES:M*.[1-9]}"
17         @echo "utility files: ${FILES:Mutil.?}"
18         @echo "m files: ${FILES:Mm*}"