mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
278 B
Makefile
13 lines
278 B
Makefile
1 year ago
|
LIBSURICATA_CONFIG ?= @CONFIGURE_PREFIX@/bin/libsuricata-config
|
||
|
|
||
|
SURICATA_LIBS = `$(LIBSURICATA_CONFIG) --libs`
|
||
|
SURICATA_CFLAGS := `$(LIBSURICATA_CONFIG) --cflags`
|
||
|
|
||
|
all: simple
|
||
|
|
||
|
simple: main.c
|
||
|
$(CC) -o $@ $^ $(CFLAGS) $(SURICATA_CFLAGS) $(SURICATA_LIBS)
|
||
|
|
||
|
clean:
|
||
|
rm -f simple
|