diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-08-14 15:31:00 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-08-14 15:31:00 +0200 |
commit | 34c25eab5d1258d8b51e2c7963fdab03408b8eb2 (patch) | |
tree | fec8c5076b60efbc296fafbc02553cafd306170b /Makefile | |
parent | 73b19833e03bcc73660e6b68a6425a8a4a2d4684 (diff) | |
download | osc-graphics-34c25eab5d1258d8b51e2c7963fdab03408b8eb2.tar.gz |
preliminary SDL_image integration
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -3,9 +3,12 @@ CC := gcc SDL_CFLAGS := $(shell sdl-config --cflags) SDL_LDFLAGS := $(shell sdl-config --libs) +SDL_IMAGE_CFLAGS := $(shell pkg-config SDL_image --cflags) +SDL_IMAGE_LDFLAGS := $(shell pkg-config SDL_image --libs) + CFLAGS := -std=c99 -Wall -g -O0 \ - $(SDL_CFLAGS) -LDFLAGS := $(SDL_LDFLAGS) + $(SDL_CFLAGS) $(SDL_IMAGE_CFLAGS) +LDFLAGS := $(SDL_LDFLAGS) $(SDL_IMAGE_LDFLAGS) all : effect-pad |