loneknightpy / idba

124 stars 53 forks source link

bin/Makefile.am noinst_PROGRAMS #5

Open wookietreiber opened 8 years ago

wookietreiber commented 8 years ago

I am wondering why most of the programs of bin/Makefile.am are tagged as noinst_PROGRAMS, because they will not be installed via make install this way.

Are they not supposed to be installed?

If I execute make install I expect idba, idba_ud, etc. all to be installed.

loneknightpy commented 8 years ago

Originally, I didn't want to pollute the system and only very few binaries were configured to be installed. If you want to install all of them, you can copy everything in bin/ to the system path.

alnf commented 7 years ago

I had the same issue, I thought smth is wrong with my installation until I looked into Makefile and read this thread. Probably, you should mention in README that if someone wants to install all the binaries he/she should do additional steps.

wookietreiber commented 7 years ago

Probably, it might also be good to have a separate installation target, e.g. install_aux or something like that.