Open dreirund opened 6 years ago
The Makefile states include common/mk/common.mk, but common/ is empty.
Makefile
include common/mk/common.mk
common/
Running make will output:
make
Makefile:69: common/mk/common.mk: No such file or directory make: *** No rule to make target 'common/mk/common.mk'. Stop.
Hello,
common is a submodule. This means you have to check it out using the following command: git submodule --init --recursive from the root of the pfixtools directory.
common
git submodule --init --recursive
The
Makefile
statesinclude common/mk/common.mk
, butcommon/
is empty.Running
make
will output: