Files
Centos-kernel-stream-9/makefile
T

17 lines
345 B
Makefile
Raw Normal View History

ifeq ($(filter dist-% distg-%,$(MAKECMDGOALS)),)
2019-07-22 18:03:53 -04:00
include Makefile
endif
_OUTPUT := "."
# this section is needed in order to make O= to work
ifeq ("$(origin O)", "command line")
_OUTPUT := "$(abspath $(O))"
_EXTRA_ARGS := O=$(_OUTPUT)
endif
dist-%::
2019-07-22 18:03:53 -04:00
$(MAKE) -C redhat $(@) $(_EXTRA_ARGS)
distg-%::
2019-07-22 18:03:53 -04:00
$(MAKE) -C redhat $(@) $(_EXTRA_ARGS)