mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-18 22:00:00 +01:00
20 lines
465 B
Makefile
20 lines
465 B
Makefile
# Makefile for veejay
|
|
|
|
INCLUDES = -I$(top_srcdir) -I$(includedir)\
|
|
-I$(top_srcdir)/vjmem\
|
|
-I$(top_srcdir)/vjmsg \
|
|
-I$(top_srcdir)/libel
|
|
if HAVE_MJPEGTOOLS
|
|
INCLUDES +=
|
|
else
|
|
INCLUDES += -I$(top_srcdir)/mjpegtools
|
|
endif
|
|
|
|
INCLUDES += $(XML2_CFLAGS) $(FFMPEG_CFLAGS) $(MJPEGTOOLS_CFLAGS)
|
|
|
|
AM_CFLAGS=$(OP_CFLAGS)
|
|
SAMPLEREC_LIB_FILE = libsamplerec.la
|
|
noinst_LTLIBRARIES = $(SAMPLEREC_LIB_FILE)
|
|
libsamplerec_la_SOURCES = samplerecord.c
|
|
EXTRA_DIST = samplerecord.h
|