Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 1 | ## Place generated object files (.o) into the same directory as their source |
| 2 | ## files, in order to avoid collisions when non-recursive make is used. |
| 3 | AUTOMAKE_OPTIONS = subdir-objects |
| 4 | |
| 5 | ## Additional flags to pass to aclocal when it is invoked automatically at |
| 6 | ## make time. The ${ACLOCAL_FLAGS} variable is picked up from the environment |
| 7 | ## to provide a way for the user to supply additional arguments. |
| 8 | ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} |
| 9 | |
Jeff Thompson | 3617406 | 2013-06-21 16:03:44 -0700 | [diff] [blame^] | 10 | lib_LIBRARIES = ndn-cpp.a |
| 11 | |
Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 12 | bin_PROGRAMS = test1 |
| 13 | |
Jeff Thompson | 3617406 | 2013-06-21 16:03:44 -0700 | [diff] [blame^] | 14 | ndn_cpp_a_SOURCES = ndn-cpp/fields/name.h ndn-cpp/fields/name.cc |
Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 15 | |
Jeff Thompson | 3617406 | 2013-06-21 16:03:44 -0700 | [diff] [blame^] | 16 | test1_SOURCES = ndn-cpp.a test/test1.cpp |
| 17 | |
Jeff Thompson | ff092f5 | 2013-06-19 13:38:12 -0700 | [diff] [blame] | 18 | dist_noinst_SCRIPTS = autogen.sh |