mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-18 13:49:58 +01:00
20 lines
512 B
Makefile
20 lines
512 B
Makefile
# Makefile for veejay
|
|
AM_CFLAGS = $(OP_CFLAGS)
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir) -I$(includedir) \
|
|
-I$(top_srcdir)/thirdparty \
|
|
-I$(top_srcdir)/vjmem \
|
|
-I$(top_srcdir)/vjmsg
|
|
if HAVE_MJPEGTOOLS
|
|
AM_CPPFLAGS +=
|
|
else
|
|
AM_CPPFLAGS += -I$(top_srcdir)/thirdparty/mjpegtools
|
|
endif
|
|
|
|
AM_CPPFLAGS += $(FFMPEG_CFLAGS) $(XML2_CFLAGS) $(MJPEGTOOLS_CFLAGS)
|
|
|
|
SAMPLE_LIB_FILE = libsample.la
|
|
noinst_LTLIBRARIES = $(SAMPLE_LIB_FILE)
|
|
libsample_la_SOURCES = sampleadm.c
|
|
EXTRA_DIST= sampleadm.h
|