diff options
| author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-09-14 18:41:23 +0200 |
|---|---|---|
| committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-09-14 18:41:23 +0200 |
| commit | d4a4d3309165bbdd97f6334e1166be00fb5413cb (patch) | |
| tree | 53e1572ce99a18852e6dd22c4a68b5e47cab3daf /Makefile | |
| parent | 6afc82f63fcc454679d24715b0d25a3a7f079b90 (diff) | |
| download | osc-graphics-d4a4d3309165bbdd97f6334e1166be00fb5413cb.tar.gz | |
integrated liblo
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 |
