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
394 B
Makefile
13 lines
394 B
Makefile
bin_PROGRAMS = simple
|
|
|
|
simple_SOURCES = main.c
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src
|
|
|
|
simple_LDFLAGS = $(all_libraries) $(SECLDFLAGS)
|
|
simple_LDADD = "-Wl,--start-group,$(top_builddir)/src/libsuricata_c.a,../../$(RUST_SURICATA_LIB),--end-group" $(RUST_LDADD)
|
|
if HTP_LDADD
|
|
simple_LDADD += ../../$(HTP_LDADD)
|
|
endif
|
|
simple_DEPENDENCIES = $(top_builddir)/src/libsuricata_c.a ../../$(RUST_SURICATA_LIB)
|