aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Robert Manea <gotmor@gmail.com>2009-10-05 12:22:59 +0200
committerGravatar Robert Manea <gotmor@gmail.com>2009-10-05 12:22:59 +0200
commit3d37212af16dee6c6dc8031f5b89c891d2271c4a (patch)
tree1d282f5287734fc13e0c3e0176c12a214adce9af /Makefile
parente63aff702c6adbb6ed7d7c7ac7ae795d5485ccea (diff)
move webinspector code to a separate file
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b6d573f..635253b 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ CFLAGS!=echo -std=c99 `pkg-config --cflags gtk+-2.0 webkit-1.0 libsoup-2.4 gthre
LDFLAGS:=$(shell pkg-config --libs gtk+-2.0 webkit-1.0 libsoup-2.4 gthread-2.0) -pthread $(LDFLAGS)
LDFLAGS!=echo `pkg-config --libs gtk+-2.0 webkit-1.0 libsoup-2.4 gthread-2.0` -pthread $(LDFLAGS)
-SRC = uzbl-core.c events.c callbacks.c
+SRC = uzbl-core.c events.c callbacks.c inspector.c
OBJ = ${SRC:.c=.o}
all: uzbl-browser options
@@ -25,7 +25,7 @@ options:
@${CC} -c ${CFLAGS} $<
@echo ... done.
-${OBJ}: uzbl-core.h events.h callbacks.h config.h
+${OBJ}: uzbl-core.h events.h callbacks.h inspector.h config.h
uzbl-core: ${OBJ}
@echo
@@ -69,6 +69,7 @@ clean:
rm -f uzbl-core.o
rm -f events.o
rm -f callbacks.o
+ rm -f inspector.o
cd ./tests/; $(MAKE) clean
install: all