| # Makefile for sreport | |
| AUTOMAKE_OPTIONS = foreign | |
| AM_CPPFLAGS = -I$(top_srcdir) | |
| bin_PROGRAMS = sreport | |
| sreport_SOURCES = \ | |
| sreport.c sreport.h \ | |
| cluster_reports.c cluster_reports.h \ | |
| job_reports.c job_reports.h \ | |
| user_reports.c user_reports.h \ | |
| resv_reports.c resv_reports.h \ | |
| common.c | |
| sreport_LDADD = $(LIB_SLURM) $(READLINE_LIBS) | |
| sreport_DEPENDENCIES = $(LIB_SLURM_BUILD) | |
| sreport_LDFLAGS = $(CMD_LDFLAGS) | |
| force: | |
| $(sreport_DEPENDENCIES) : force | |
| @cd `dirname $@` && $(MAKE) `basename $@` |