Page 1 of 1

Makefile not bundling my grfs anymore

Posted: 23 Aug 2019 17:01
by Erato
Hey!

I've tried updating a grf today, and I wanted to add the readme and all to a tar file, and distribute that. Usually this is done by the compiler. While it used to (and still does for some projects, but not all) output this at the end:

Code: Select all

[BUNDLE] mygrf
[BUNDLE TAR] mygrf.tar
Now it says

Code: Select all

make: *** No rule to make target `docs/readme.txt', needed by `all'. Stop.
For some, but not all my grfs. Updating NML and copying NML/makefile from a project where it does work doesn't seem to have an effect.

Does anyone know how to make my compiler bundle grfs again?

Thanks!

Re: Makefile not bundling my grfs anymore

Posted: 23 Aug 2019 18:40
by jfs
Does the docs/readme.txt file exist? If it does not, is it supposed to be automatically generated? If not, try making it yourself.

That's what it's complaining about: The docs/readme.txt file does not exist and 'make' does not have any rules how to create it.

Re: Makefile not bundling my grfs anymore

Posted: 23 Aug 2019 18:45
by Erato
jfs wrote: 23 Aug 2019 18:40 Does the docs/readme.txt file exist? If it does not, is it supposed to be automatically generated? If not, try making it yourself.

That's what it's complaining about: The docs/readme.txt file does not exist and 'make' does not have any rules how to create it.
That's really weird. I thought it was there, but it just isn't.

Thanks! This helps.