######################## -*- Mode: Makefile-Automake -*- ###################### ## ## Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo ## ## The contents of this file are covered under the licence agreement in the ## file "LICENCE" distributed with Cforall. ## ## Makefile.am -- ## ## Author : Peter A. Buhr ## Created On : Wed Jun 28 12:07:10 2017 ## Last Modified By : Peter A. Buhr ## Last Modified On : Wed Jun 28 23:11:56 2017 ## Update Count : 15 ############################################################################### AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names ACLOCAL_AMFLAGS = -I automake noinst_PROGRAMS = busy catchsig repeat watchdog AM_CFLAGS = -Wall -Wextra -Werror=return-type -O2 -g busy_LDFLAGS = -pthread nodist_busy_SOURCES = busy.c nodist_catchsig_SOURCES = catchsig.c nodist_repeat_SOURCES = repeat.c nodist_watchdog_SOURCES = watchdog.c