mirror of
https://github.com/game-stop/veejay.git
synced 2026-01-05 22:45:30 +01:00
16 lines
414 B
Makefile
16 lines
414 B
Makefile
# Makefile for veejay
|
|
|
|
INCLUDES = -I$(top_srcdir) -I$(includedir) -I$(top_srcdir)/vjmem -I$(top_srcdir)/vjmsg -I$(top_srcdir)/libhash
|
|
if HAVE_MJPEGTOOLS
|
|
INCLUDES +=
|
|
else
|
|
INCLUDES += -I$(top_srcdir)/mjpegtools
|
|
endif
|
|
|
|
INCLUDES += $(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
|