aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Jason Axelson (dell.server) <jason.axelson@gmail.com>2009-04-26 17:08:11 -1000
committerGravatar Jason Axelson (dell.server) <jason.axelson@gmail.com>2009-04-26 17:13:22 -1000
commit158043454ca86600bb96e94dd15325431edbf556 (patch)
tree124701d574a0f0ef5d0d4a9f541196a1cbb4f1d1 /Makefile
parentfcb77d48676b0fa2fc22424b1ea61669936248e2 (diff)
Made makefile more robust
By using the .PHONY directive we can avoid errors that appear when there are already files by that name in the directory. For example: If we put a file called clean in the directory, than make clean would not execute because the file 'clean' is already made.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 4f4e6f0..de4fe4d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +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)
+.PHONY: all test clean install
all: uzbl
test: