diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile index 31607f7..7e14cd9 100644 --- a/Makefile +++ b/Makefile @@ -4,9 +4,8 @@ SRCDIR := ./src BINDIR := ./build EXE := $(BINDIR)/blackshades -CFLAGS := -O2 -Wall -g $(shell sdl-config --cflags) -I$(SRCDIR) -CXXFLAGS := $(CFLAGS) -LDFLAGS := $(shell sdl-config --libs) -lSDL_image -lGL -lGLU -lopenal -lalut +CXXFLAGS := -O2 -Wall -g -I$(SRCDIR) +LDFLAGS := -lSDL -lGL -lGLU -lopenal -lalut # Don't want ogg? #CFLAGS += -DNOOGG |