You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.3 KiB
Makefile

9 years ago
#
# Author: Hari Sekhon
# Date: 2016-01-17 12:56:53 +0000 (Sun, 17 Jan 2016)
#
# vim:ts=4:sts=4:sw=4:noet
#
# https://github.com/harisekhon/bash-tools
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback
#
# https://www.linkedin.com/in/harisekhon
9 years ago
#
9 years ago
.PHONY: build
build:
9 years ago
echo Nothing to build
9 years ago
9 years ago
.PHONY: test
test:
./all.sh
9 years ago
.PHONY: update
9 years ago
update:
git pull
9 years ago
.PHONY: update-no-recompile
update-no-recompile:
git pull
9 years ago
9 years ago
.PHONY: clean
9 years ago
clean:
@echo Nothing to clean
8 years ago
.PHONY: push
push:
git push
6 years ago
# For quick testing only - for actual Dockerfile builds see https://hub.docker.com/r/harisekhon/alpine-github
.PHONY: docker-alpine
docker-alpine:
./docker_mount_build_exec.sh alpine
# For quick testing only - for actual Dockerfile builds see https://hub.docker.com/r/harisekhon/debian-github
.PHONY: docker-debian
docker-debian:
./docker_mount_build_exec.sh debian
# For quick testing only - for actual Dockerfile builds see https://hub.docker.com/r/harisekhon/centos-github
.PHONY: docker-centos
docker-centos:
./docker_mount_build_exec.sh centos
# For quick testing only - for actual Dockerfile builds see https://hub.docker.com/r/harisekhon/ubuntu-github
.PHONY: docker-ubuntu
docker-ubuntu:
./docker_mount_build_exec.sh ubuntu