标签: makefile
如何在我的Makefile中调用一个大叔目录?
我有
LIBDIR = $(ROOTDIR)/lib SRCDIR = $(ROOTDIR)/src
我的Makefile位于$(ROOTDIR)/src/utils中。
$(ROOTDIR)/src/utils
我想出了如何使用
DIRUP := $(dir $(abspath $(lastword $(MAKEFILE_LIST))/..))
但是我无法做到!