aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..a21b0fe
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,19 @@
+include prelude.mk
+
+PKG_NAME := reboot-into-windows
+
+.PHONY: all
+all: build
+
+.PHONY: build
+build:
+ makepkg --clean --cleanbuild --force --syncdeps && makepkg --printsrcinfo > .SRCINFO
+
+.PHONY: commit
+commit:
+ git add .SRCINFO
+ source ./PKGBUILD && git commit -am "aur: $$pkgver-$$pkgrel"
+
+.PHONY: push
+push:
+ git push 'ssh://aur@aur.archlinux.org/$(call escape,$(PKG_NAME)).git' "$$( git symbolic-ref HEAD ):master"