From a305b0af56cd710c3cc0dc2c704a9370a4bd2262 Mon Sep 17 00:00:00 2001 From: James Booth Date: Sun, 31 May 2015 23:21:46 +0100 Subject: [PATCH] Install runner --- Makefile.am | 10 ++++++---- runstabber.c => stabber.c | 0 2 files changed, 6 insertions(+), 4 deletions(-) rename runstabber.c => stabber.c (100%) diff --git a/Makefile.am b/Makefile.am index 70d8dea..37d3f88 100644 --- a/Makefile.am +++ b/Makefile.am @@ -16,10 +16,12 @@ libstabber_la_SOURCES = $(sources) include_HEADERS = stabber.h -noinst_PROGRAMS = runstabber stabbertest -runstabber_SOURCES = runstabber.c -runstabber_CFLAGS = -I$(top_srcdir) -runstabber_LDADD = libstabber.la -lpthread +noinst_PROGRAMS = stabbertest stabbertest_SOURCES = stabbertest.c stabbertest_CFLAGS = -I$(top_srcdir) stabbertest_LDADD = libstabber.la -lpthread + +bin_PROGRAMS = stabber +stabber_SOURCES = stabber.c +stabber_CFLAGS = -I$(top_srcdir) +stabber_LDADD = libstabber.la -lpthread diff --git a/runstabber.c b/stabber.c similarity index 100% rename from runstabber.c rename to stabber.c