aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authornotaz2011-09-23 20:51:07 +0300
committernotaz2011-09-23 20:51:07 +0300
commitbb5cf0fcf7abafa7648734696320d5fa3bdb1e0a (patch)
tree3fd032d85cdfc7766f050951391e164ced8fe0a4 /Makefile
parenta80ae4a0353fce94df700ec84222d3c56c3d813a (diff)
downloadpcsx_rearmed-bb5cf0fcf7abafa7648734696320d5fa3bdb1e0a.tar.gz
pcsx_rearmed-bb5cf0fcf7abafa7648734696320d5fa3bdb1e0a.tar.bz2
pcsx_rearmed-bb5cf0fcf7abafa7648734696320d5fa3bdb1e0a.zip
get rid of hard libbz2 dependency
it just keeps getting in my way when trying to run this elsewhere.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5a7b278..fa1f673 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ TARGET = pcsx
ARCH = $(shell $(CC) -v 2>&1 | grep -i 'target:' | awk '{print $$2}' | awk -F '-' '{print $$1}')
CFLAGS += -Wall -ggdb -Ifrontend -ffast-math
-LDFLAGS += -lz -lpthread -ldl -lpng -lbz2
+LDFLAGS += -lz -lpthread -ldl -lpng
ifndef DEBUG
CFLAGS += -O2 -DNDEBUG
endif