From 825e2c192228babe87c0f98593004be3232ca488 Mon Sep 17 00:00:00 2001 From: Ruben Laguna Date: Mon, 9 Feb 2015 22:35:26 +0100 Subject: [PATCH] Add common.h to SOURCES --- Makefile.am | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 4189b09..f65517f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -5,7 +5,9 @@ AM_CFLAGS = # CFLAGS applicable to all executables (products) # Convenience library so that it can be resued # between my_executable and the tests noinst_LIBRARIES = libcommon.a -libcommon_a_SOURCES = src/common.c +libcommon_a_SOURCES = src/common.h src/common.c +# src/common.h appear in SOURCES to that it gets copied to +# distribution tgz. # The main product bin_PROGRAMS = myexecutable # make all will generate ./my_executable