File: Makefile.am

package info (click to toggle)
guvcview 2.0.1%2Bdebian-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,512 kB
  • ctags: 2,498
  • sloc: ansic: 24,498; sh: 11,276; makefile: 270; sed: 16
file content (34 lines) | stat: -rw-r--r-- 893 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
## Process this file with automake to produce Makefile.in

# Public headers
h_sources = gviewencoder.h

c_sources = encoder.c \
			video_codecs.c \
			audio_codecs.c \
			libav_encoder.c \
			stream_io.c \
			file_io.c \
			matroska.c \
			avi.c \
			muxer.c


#Install the headers in a versioned directory - guvcvideo-x.x/libgviewaudio:
library_includedir=$(includedir)/$(PACKAGE)-$(PACKAGE_RELEASE)/$(GVIEWENCODER_LIBRARY_NAME)
library_include_HEADERS = $(h_sources)

#AM_CFLAGS =

lib_LTLIBRARIES= libgviewencoder.la

libgviewencoder_la_SOURCES= $(h_sources) $(c_sources)

libgviewencoder_la_CFLAGS = $(GVIEWENCODER_CFLAGS) \
			$(PTHREAD_CFLAGS) \
			-I$(top_srcdir) \
			-I$(top_srcdir)/includes

libgviewencoder_la_LIBADD= $(GVIEWENCODER_LIBS) $(GSL_LIBS) $(PTHREAD_LIBS) -lm

libgviewencoder_la_LDFLAGS= -version-info $(GVIEWENCODER_LIBRARY_VERSION) -release $(GVIEWENCODER_API_VERSION)