summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ab81824..f3e3eaa 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,7 @@
# surf - simple browser
# See LICENSE file for copyright and license details.
+
+# Includes some ugly customizations by miguel (to incorporate his webext)
.POSIX:
include config.mk
@@ -93,13 +95,18 @@ webext-clean:
-rm webext-piper.o
-rm webext-piper.so
-superauto:
+all-fresh-reinstall:
make clean
make webext-clean
make
make webext-build
sudo make webext-install
+all-clean:
+ make clean
+ make webext-clean
+
+