diff options
| author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-08-15 00:37:05 +0200 |
|---|---|---|
| committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-08-15 00:37:05 +0200 |
| commit | cdc6708aec8aad8af54aeaec47f371c47bad0460 (patch) | |
| tree | fc20c9d73fa0ec4baaa6a0d4152f39b5ed01dac5 /Makefile | |
| parent | 9346215a47a199df6573f083066ee23680e0e8c0 (diff) | |
| download | osc-graphics-cdc6708aec8aad8af54aeaec47f371c47bad0460.tar.gz | |
video layer using libVLC
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -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 |
