source: trunk/Monitoring/CNClient/Makefile

Last change on this file was 967, checked in by jripsl, 11 years ago
  • add documentation (convergence platform schema).
File size: 381 bytes
RevLine 
[967]1#
2# CNClient Makefile
3#
4# Note
5#   we use static compilation to prevent the need for rabbitmq library on every computing node
6#
[942]7
[962]8sendAMQPMsg: send_AMQP_msg.c
9        gcc -static -I/usr/local/include -L/usr/local/lib -Wall -o sendAMQPMsg send_AMQP_msg.c -lrabbitmq
10
[942]11install: sendAMQPMsg
12        sudo cp sendAMQPMsg /usr/local/bin
[962]13
14clean: sendAMQPMsg
15        rm -f sendAMQPMsg
[967]16
17#all: clean
18#       sendAMQPMsg
Note: See TracBrowser for help on using the repository browser.