Hi, I have a problem with my makefile... the thing is that I have this script which works from shell without problem:
But I want to do this stuff in my makefile, so I've added "; \" so it will continue in the the same shell. And my makefile looks like this:
But it won't work? My script however and makefile works fine except this part, what am I doing wrong, any ideas? GNU Make 3.81 on OS4.1u2.
cd DISTR LHA -aer a "Archive" "ProgDir" cd /
//snip// lha : cd DISTR; \ LHA -aer a "Archive" "ProgDir"; \ cd / //snip//