summaryrefslogtreecommitdiff
path: root/bin/setup
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-07-07 23:15:52 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-07-07 23:15:52 -0400
commitc58a6f5b142194637c51be6d9462b77bfda7c24b (patch)
treec9fee5acd5f7daa77acb2dc31d84716a04ae6491 /bin/setup
parentce9a3af085fd20fd2d3e859e88479b09f82c9d54 (diff)
tidy/update
Diffstat (limited to 'bin/setup')
-rwxr-xr-xbin/setup41
1 files changed, 0 insertions, 41 deletions
diff --git a/bin/setup b/bin/setup
deleted file mode 100755
index f421cbd..0000000
--- a/bin/setup
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/usr/bin/make -f
-
-CFLAGS += -std=c99 -Wall -Wextra -Werror -Wno-unused-parameter
-
-dirs = \
- $(HOME)/packages/pkgdest \
- $(HOME)/packages/srcdest \
- $(HOME)/packages/srcpkgdest \
- $(HOME)/packages/logdest \
- $(HOME)/packages/builddir
-
-all: \
- $(HOME)/bin/autobuild \
- $(HOME)/.ssh/id_rsa \
- $(HOME)/.ssh/id_rsa.pub \
- $(HOME)/.gnupg/secring.gpg \
- $(HOME)/packages/abslibre \
- $(dirs)
-
-autobuild $(HOME)/bin/autobuild: $(HOME)/bin/autobuild.c
- $(LINK.c) $^ $(LOADLIBES) $(LDLIBS) -o $@ && chmod 6755 $@
-
-$(HOME)/.ssh/id_rsa $(HOME)/.ssh/id_rsa.pub:
- ssh-keygen -N '' -f $@
-
-$(HOME)/.gnupg/secring.gpg: | $(HOME)/.gitconfig
- printf '%s\n' \
- 'Key-Type: default' \
- 'Subkey-Type: default' \
- "Name-Real: $(git config user.name)" \
- "Name-Email: $(git config user.email)" \
- 'Expire-Date: 0' \
- | gpg --gen-key --batch
-
-$(HOME)/packages/abslibre:
- createworkdir
-
-$(dirs): %:
- mkdir -p -- $@
-
-.DELETE_ON_ERROR: