-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
25 lines (22 loc) · 519 Bytes
/
Makefile
File metadata and controls
25 lines (22 loc) · 519 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# $Id$
#
# example module makefile
#
#
# WARNING: do not run this directly, it should be run by the master Makefile
include ../../Makefile.defs
auto_gen=
NAME=msilo.so
#
# Dynamic linking of rabbitmq library:
# 1. Create a new file: /etc/ld.so.conf.d/rabbitmq-x86_64.conf
# /usr/local/lib64
# 2. Clear ldconfig cache:
# rm /etc/ld.so.cache
# 3. Rebuild ld cache
# ldconfig
# 4. test:
# ldd modules/msilo/msilo.so
#
LIBS=-L/usr/local -L/usr/local/lib64 -fPIC -lrabbitmq
include ../../Makefile.modules