# # CNClient Makefile # # Note # we use static compilation to prevent the need for rabbitmq library on every computing node # sendAMQPMsg: send_AMQP_msg.c gcc -static -I/usr/local/include -L/usr/local/lib -Wall -o sendAMQPMsg send_AMQP_msg.c -lrabbitmq install: sendAMQPMsg sudo cp sendAMQPMsg /usr/local/bin clean: sendAMQPMsg rm -f sendAMQPMsg #all: clean # sendAMQPMsg