I have a project, that produces multiple binaries in bin/ directory.
The project dir looks like this:
bin/ app1/ app2/ app3/ Makefile.am configure.ac
When I do make all
, all the targets are compiled. But when I do e.g. make app1
, it just says Nothing to be done for 'app1'
and compiles nothing.
Makefile.am files of apps look like this:
bin_PROGRAMS = $(top_builddir)/bin/app1
__top_builddir__bin_app1_SOURCES = app1.c
Anyone know how to accomplish this? Thanks!