makefiles

non-makefiles as wrapper scripts
git clone git://git.pyratebeard.net/makefiles.git
Log | Files | Refs | README

commit 49c43ecfeef2feab9556ba6a8a0e4e3c6dbd432f
parent b1376a8c09655c767f1cc52555c478cd693358a7
Author: pyratebeard <root@pyratebeard.net>
Date:   Tue, 25 Jan 2022 08:05:27 +0000

phony

Diffstat:
Mdocker | 2++
Mterraform | 2++
2 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/docker b/docker @@ -2,6 +2,8 @@ override TAG = $(shell basename $$PWD) VER := latest IMAGE_ID = $(shell eval sudo docker images -qa ${TAG} | head -n 1) +.PHONY build test buildtest deploy + build: sudo docker build -t ${TAG}:${VER} . diff --git a/terraform b/terraform @@ -1,6 +1,8 @@ NAME := test VARS := terraform +.PHONY init plan planapply refresh destroy clean + init: ยท terraform init