$ make install
for subdir in src examples; do \
make -C $subdir || exit 1; \
done
make[1]: Entering directory `/home/a3_nm/apps/libircclient-1.6/src'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/a3_nm/apps/libircclient-1.6/src'
make[1]: Entering directory `/home/a3_nm/apps/libircclient-1.6/examples'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/a3_nm/apps/libircclient-1.6/examples'
cd src && make install
make[1]: Entering directory `/home/a3_nm/apps/libircclient-1.6/src'
make[1]: *** No rule to make target `lib', needed by `install'. Stop.
make[1]: Leaving directory `/home/a3_nm/apps/libircclient-1.6/src'
make: [install] Error 2 (ignored)
Am I doing something wrong? Thanks for your help!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
View and moderate all "bugs Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Bugs"
I get something different with version 1.6:
$ make install
for subdir in src examples; do \
make -C $subdir || exit 1; \
done
make[1]: Entering directory `/home/a3_nm/apps/libircclient-1.6/src'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/a3_nm/apps/libircclient-1.6/src'
make[1]: Entering directory `/home/a3_nm/apps/libircclient-1.6/examples'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/a3_nm/apps/libircclient-1.6/examples'
cd src && make install
make[1]: Entering directory `/home/a3_nm/apps/libircclient-1.6/src'
make[1]: *** No rule to make target `lib', needed by `install'. Stop.
make[1]: Leaving directory `/home/a3_nm/apps/libircclient-1.6/src'
make: [install] Error 2 (ignored)
Am I doing something wrong? Thanks for your help!
Confirmed. The 'lib' target on which 'install' depends is not defined.
If you just remove the 'lib' target to try to get it working, still doesn't build.