mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-18 13:49:58 +01:00
16 lines
463 B
Makefile
16 lines
463 B
Makefile
# Makefile for veejay
|
|
AM_CFLAGS=$(SUBSAMPLE_CFLAGS)
|
|
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir) -I$(includedir) \
|
|
-I$(top_srcdir)/thirdparty \
|
|
-I$(top_srcdir)/vjmem \
|
|
-I$(top_srcdir)/vjmsg \
|
|
-I$(top_srcdir)/libyuv
|
|
|
|
SUBSAMPLE_LIB_FILE = libsubsample.la
|
|
pkginclude_HEADERS=subsample.h
|
|
EXTRA_DIST = subsample.h
|
|
noinst_LTLIBRARIES = $(SUBSAMPLE_LIB_FILE)
|
|
libsubsample_la_SOURCES = subsample.c
|