Wrong Makefile advice for quick sensor
Added by Laurent LÊ-HEBRARD over 8 years ago
Hello,
I followed the instructions to build a quick sensor given here :
https://www.prelude-siem.org/projects/prelude/wiki/DevelAgentQuickly
The Makefile advice didn't work with the GNU Make 4.0.
The lines
CFLAGS=
libprelude-config --cflags
LDFLAGS=libprelude-config --libs
should be replaced by
CFLAGS=$(shell libprelude-config --cflags)
LDFLAGS=$(shell libprelude-config --libs)
for the command "make" to work.
Although I don't think this information is relevant here, I run a Kali-Linux 2.0 64bits.
Regards,
Laurent LÊ-HEBRARD.
Replies (1)
RE: Wrong Makefile advice for quick sensor - Added by Antoine LUONG over 8 years ago
Hello,
Thank you for the feedback, this was some Autoconf syntax that should not be necessary in this tutorial.
Regards