mirror of
https://github.com/opnsense/src.git
synced 2026-03-16 07:41:02 -04:00
18 lines
397 B
Makefile
18 lines
397 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Test the M modifier.
|
|
#
|
|
FILES = \
|
|
main.c globals.h \
|
|
util.c util.h \
|
|
map.c map.h \
|
|
parser.y lexer.l \
|
|
cmdman.1 format.5
|
|
test1:
|
|
@echo "all files: ${FILES}"
|
|
@echo "cfiles: ${FILES:M*.c}"
|
|
@echo "hfiles: ${FILES:M*.h}"
|
|
@echo "grammar and lexer: ${FILES:M*.[ly]}"
|
|
@echo "man page: ${FILES:M*.[1-9]}"
|
|
@echo "utility files: ${FILES:Mutil.?}"
|
|
@echo "m files: ${FILES:Mm*}"
|