From cdc6708aec8aad8af54aeaec47f371c47bad0460 Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Wed, 15 Aug 2012 00:37:05 +0200 Subject: video layer using libVLC --- Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2e336a7..5f6f6f9 100644 --- a/Makefile +++ b/Makefile @@ -9,9 +9,14 @@ SDL_IMAGE_LDFLAGS := $(shell pkg-config SDL_image --libs) SDL_GFX_CFLAGS := $(shell pkg-config SDL_gfx --cflags) SDL_GFX_LDFLAGS := $(shell pkg-config SDL_gfx --libs) +LIBVLC_CFLAGS := $(shell pkg-config libvlc --cflags) +LIBVLC_LDFLAGS := $(shell pkg-config libvlc --libs) + CFLAGS := -std=c99 -Wall -g -O0 \ - $(SDL_CFLAGS) $(SDL_IMAGE_CFLAGS) $(SDL_GFX_CFLAGS) -LDFLAGS := $(SDL_LDFLAGS) $(SDL_IMAGE_LDFLAGS) $(SDL_GFX_LDFLAGS) + $(SDL_CFLAGS) $(SDL_IMAGE_CFLAGS) $(SDL_GFX_CFLAGS) \ + $(LIBVLC_CFLAGS) +LDFLAGS := $(SDL_LDFLAGS) $(SDL_IMAGE_LDFLAGS) $(SDL_GFX_LDFLAGS) \ + $(LIBVLC_LDFLAGS) all : effect-pad -- cgit v1.2.3