24 lines
390 B
Makefile
24 lines
390 B
Makefile
#
|
|
# Makefile.conf
|
|
#
|
|
|
|
LIBRARIES += Http
|
|
LIBRARIES += Logging
|
|
LIBRARIES += Utilities
|
|
|
|
CFLAGS += -I$(ROOTPATH)/Libraries/CTPL
|
|
CFLAGS += -I$(ROOTPATH)/Libraries/FFmpeg
|
|
|
|
LFLAGS += -pthread
|
|
|
|
CFLAGS += -I$(ROOTPATH) -I$(ROOTPATH)/Libraries
|
|
|
|
CFLAGS += -Wno-sign-compare -Wno-deprecated-declarations
|
|
|
|
DEBUGDIR := .debug
|
|
|
|
#DEFAULTARCH := x86_64-alpine
|
|
DEFAULTARCH := x86_64
|
|
TARGETS += StreamRecoder
|
|
|