blob: 60030cf372e14bce5510a9475060b7d77ecb194c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# -*- Makefile -*-
# vim:set ft=make:
#
# DROPS (Dresden Realtime OPerating System) Component
#
# Makefile-include to extract variables from Makefile-compatible files
#
# We use this file to browse doxygen files in the doc.mk rules.
BID_print:
@echo $($(VAR))
BID_printm:
@$(foreach v, $(VARS), echo '$(v)=$($(v))';)
.PHONY: BID_print BID_printm
|