aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Barrucadu <mike@barrucadu.co.uk>2009-04-29 19:01:48 +0100
committerGravatar Barrucadu <mike@barrucadu.co.uk>2009-04-29 19:01:48 +0100
commit353aefa427b0153fe1db25781771bf1c52fab4d6 (patch)
treedf1fa481c42718c0fecb00d7ed3d5da01d533028 /Makefile
parent2818ff21932004cc1fb2e39f64fa42921cb51863 (diff)
Replaced FIFO interface with socket.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a70ca9a..fa68594 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
CPPFLAGS=$(shell pkg-config --cflags gtk+-2.0 webkit-1.0) -Wall -W
LDFLAGS=$(shell pkg-config --libs gtk+-2.0 webkit-1.0)
-all: uzbl
+all: uzbl uzblctrl
test:
./uzbl --uri http://www.uzbl.org
@@ -13,12 +13,14 @@ test-config-real:
clean:
rm -f uzbl
+ rm -f uzblctrl
install:
install -d $(DESTDIR)/usr/bin
install -d $(DESTDIR)/usr/share/uzbl/docs
install -d $(DESTDIR)/usr/share/uzbl/examples
install -D -m755 uzbl $(DESTDIR)/usr/bin/uzbl
+ install -D -m755 uzblctrl $(DESTDIR)/usr/bin/uzblctrl
cp -ax examples $(DESTDIR)/usr/share/uzbl/
install -D -m644 CHECKLIST $(DESTDIR)/usr/share/uzbl/docs
install -D -m644 README $(DESTDIR)/usr/share/uzbl/docs