Skip to content

Commit

Permalink
Use zlib pkg-config
Browse files Browse the repository at this point in the history
  • Loading branch information
falkTX committed May 1, 2013
1 parent f3fce1b commit 72081a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ DSSI_DIR = $(DESTDIR)$(PREFIX)/lib/dssi
LADSPA_DIR = $(DESTDIR)$(PREFIX)/lib/ladspa

BUILD_FLAGS = -O2 -ffast-math -fvisibility=hidden -fPIC -mtune=generic -msse -Wall -Ivestige $(CXX_FLAGS)
BUILD_FLAGS += $(shell pkg-config --cflags alsa liblo)
LINK_FLAGS = -lz $(LDFLAGS)
BUILD_FLAGS += $(shell pkg-config --cflags alsa liblo zlib)
LINK_FLAGS = $(shell pkg-config --libs zlib) $(LDFLAGS)

LINK_PLUGIN = -shared $(shell pkg-config --libs alsa jack) $(LINK_FLAGS)
LINK_HOST = $(shell pkg-config --libs alsa jack) $(LINK_FLAGS)
Expand Down

0 comments on commit 72081a3

Please sign in to comment.