rootPath = ../
include ../include.mk

all : ${binPath}/cactus_workflow.py ${binPath}/cactus_workflow_getFlowers ${binPath}/cactus_workflow_extendFlowers 

${binPath}/cactus_workflow.py : cactus_workflow.py
	cp cactus_workflow.py ${binPath}/cactus_workflow.py
	chmod +x ${binPath}/cactus_workflow.py

${binPath}/cactus_workflow_getFlowers : cactus_workflow_getFlowers.c ${libPath}/cactusLib.a ${basicLibsDependencies}
	${cxx} ${cflags} -I${libPath} -o ${binPath}/cactus_workflow_getFlowers cactus_workflow_getFlowers.c ${libPath}/cactusLib.a ${basicLibs}

${binPath}/cactus_workflow_extendFlowers : cactus_workflow_extendFlowers.c ${libPath}/cactusLib.a ${basicLibsDependencies}
	${cxx} ${cflags} -I${libPath} -o ${binPath}/cactus_workflow_extendFlowers cactus_workflow_extendFlowers.c ${libPath}/cactusLib.a ${basicLibs}

clean :  
	rm -f *.o
	rm -f ${binPath}/cactus_workflow.py ${binPath}/cactus_workflow_getFlowers ${binPath}/cactus_workflow_extendFlowers 
 