You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1016 B
52 lines
1016 B
DESTDIR =
|
|
PREFIX = /usr/local
|
|
BINDIR = $(PREFIX)/bin
|
|
|
|
CC ?= gcc
|
|
LD = $(CC)
|
|
|
|
ifeq ($(MODSEC_INC),)
|
|
MODSEC_INC := modsecurity-2.9.1/INSTALL/include
|
|
endif
|
|
|
|
ifeq ($(MODSEC_LIB),)
|
|
MODSEC_LIB := modsecurity-2.9.1/INSTALL/lib
|
|
endif
|
|
|
|
ifeq ($(APACHE2_INC),)
|
|
APACHE2_INC := /usr/include/apache2
|
|
endif
|
|
|
|
ifeq ($(APR_INC),)
|
|
APR_INC := /usr/include/apr-1.0
|
|
endif
|
|
|
|
ifeq ($(LIBXML_INC),)
|
|
LIBXML_INC := /usr/include/libxml2
|
|
endif
|
|
|
|
ifeq ($(EVENT_LIB),)
|
|
EVENT_LIB := -levent
|
|
endif
|
|
|
|
ifeq ($(EVENT_INC),)
|
|
EVENT_INC := /usr/include
|
|
endif
|
|
|
|
CFLAGS += -g -Wall -pthread
|
|
INCS += -I../../include -I$(MODSEC_INC) -I$(APACHE2_INC) -I$(APR_INC) -I$(LIBXML_INC) -I$(EVENT_INC)
|
|
LIBS += -lpthread $(EVENT_LIB) -levent_pthreads -lcurl -lapr-1 -laprutil-1 -lxml2 -lpcre -lyajl
|
|
|
|
OBJS = spoa.o modsec_wrapper.o
|
|
|
|
modsecurity: $(OBJS)
|
|
$(LD) $(LDFLAGS) -o $@ $^ $(MODSEC_LIB)/standalone.a $(LIBS)
|
|
|
|
install: modsecurity
|
|
install modsecurity $(DESTDIR)$(BINDIR)
|
|
|
|
clean:
|
|
rm -f modsecurity $(OBJS)
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) $(INCS) -c -o $@ $<
|
|
|