I want to include a rule in my makefile for converting my lazy c++ .lzz
files into their respective .h
and .cpp
files.
It seems to me to be a slightly unusual case where two files depend on one, and I'm not confident that I'll be able to get the dependencies set up correctly.
# something like...
%.cpp %.h : %.lzz
lzz $<
Anyone have a rule that works well?
That looks right to me.
From the make info pages: