playback/player: Add a simple Makefile for gst-play

This commit is contained in:
Sebastian Dröge 2014-07-27 18:10:49 +02:00
parent 5c289ec20a
commit 153efa0077

View file

@ -0,0 +1,21 @@
CFLAGS ?= -Wall -O2 -g
PKGCONFIG ?= pkg-config
LIBS := $(shell $(PKGCONFIG) --libs --cflags gstreamer-1.0 gstreamer-video-1.0) -lm
all: gst-play
clean:
rm -f gst-play
SOURCES = \
gst-play.c \
gst-play-kb.c \
../lib/gstplayer.c
HEADERS = \
gst-play-kb.h \
../lib/gstplayer.h
gst-play: $(SOURCES) $(HEADERS)
$(CC) -o $@ $(SOURCES) $(CFLAGS) $(LIBS) -I../lib