mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
7 lines
489 B
Makefile
Executable File
7 lines
489 B
Makefile
Executable File
lib_LTLIBRARIES = liburbackupserver_httpserver.la
|
|
liburbackupserver_httpserver_la_SOURCES = dllmain.cpp ../stringtools.cpp IndexFiles.cpp HTTPAction.cpp HTTPFile.cpp HTTPService.cpp HTTPClient.cpp HTTPProxy.cpp MIMEType.cpp
|
|
noinst_HEADERS = HTTPAction.h HTTPClient.h HTTPFile.h HTTPProxy.h HTTPService.h IndexFiles.h MIMEType.h
|
|
if WITH_FORTIFY
|
|
AM_CPPFLAGS = -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2
|
|
endif
|
|
AM_CXXFLAGS = -DLINUX
|