From d4a4d3309165bbdd97f6334e1166be00fb5413cb Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Fri, 14 Sep 2012 18:41:23 +0200 Subject: integrated liblo --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index c0f4a92..19a0221 100644 --- a/Makefile +++ b/Makefile @@ -12,11 +12,14 @@ SDL_GFX_LDFLAGS := $(shell pkg-config SDL_gfx --libs) LIBVLC_CFLAGS := $(shell pkg-config libvlc --cflags) LIBVLC_LDFLAGS := $(shell pkg-config libvlc --libs) +LIBLO_CFLAGS := $(shell pkg-config liblo --cflags) +LIBLO_LDFLAGS := $(shell pkg-config liblo --libs) + CFLAGS := -std=c99 -Wall -g -O0 \ $(SDL_CFLAGS) $(SDL_IMAGE_CFLAGS) $(SDL_GFX_CFLAGS) \ - $(LIBVLC_CFLAGS) + $(LIBVLC_CFLAGS) $(LIBLO_CFLAGS) LDFLAGS := $(SDL_LDFLAGS) $(SDL_IMAGE_LDFLAGS) $(SDL_GFX_LDFLAGS) \ - $(LIBVLC_LDFLAGS) + $(LIBVLC_LDFLAGS) $(LIBLO_LDFLAGS) all : osc-graphics -- cgit v1.2.3