I'm trying to build a unix application ("mdf2iso") on my PowerMac, for the purpose of converting a .mdf (windows Alcohol 120% disk image file) to .iso so I can mount it on my Mac. The instructions say to run the following commands in order:
1. ./configure
2. make
3. sudo make install
The problem comes when I run "make" (and then "sudo make install" even though the previous make command didn't work), I get the following output:
I posted this in another thread, but I think the Mac Programming forum is more appropriate for this particular issue. Any ideas?
1. ./configure
2. make
3. sudo make install
The problem comes when I run "make" (and then "sudo make install" even though the previous make command didn't work), I get the following output:
Code:
make all-recursive
Making all in src
make[2]: Nothing to be done for `all'.
Code:
Making install in src
test -z "/usr/local/bin" || mkdir -p -- "/usr/local/bin"
/usr/bin/install -c 'mdf2iso' '/usr/local/bin/mdf2iso'
make[2]: Nothing to be done for `install-data-am'.
make[2]: Nothing to be done for `install-exec-am'.
make[2]: Nothing to be done for `install-data-am'.
I posted this in another thread, but I think the Mac Programming forum is more appropriate for this particular issue. Any ideas?