Files @ 7fa6b34e407e
Branch filter:

Location: DistRen/src/server/Makefile.am

LordOfWar
updated queue function, it now creates the job, then passes it to the add_job_to_queue function which properly places it in the queue based on its priority... but currently it only creates blender jobs, although I plan on using a switch statement to create different job types in the future.
COMMON_SOURCES =  slavefuncs.c slavefuncs.h distrenjob.c distrenjob.h

bin_PROGRAMS = distrend distrenslave
distrend_SOURCES = distrend.c ${COMMON_SOURCES}
distrend_LDADD = @DISTLIBS_LIBS@ @top_builddir@/src/common/libdistrencommon.la
distrend_CFLAGS = @DISTLIBS_CFLAGS@ -I@top_srcdir@/src/common

distrenslave_SOURCES = slave.c ${COMMON_SOURCES}
distrenslave_LDADD = @DISTLIBS_LIBS@ @top_builddir@/src/common/libdistrencommon.la
distrenslave_CFLAGS = @DISTLIBS_CFLAGS@ -I@top_srcdir@/src/common