From 5ebe6aa4578f9c2430368ba18ced25be15bc89bd Mon Sep 17 00:00:00 2001 From: Drazen Popovic Date: Tue, 14 Jun 2022 17:39:25 +0200 Subject: [PATCH] Added `make clean` to Makefile --- Makefile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a3451fc65..885489265 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ SHELL := bash .ONESHELL: -.PHONY: autogen-deps run-testnet-node run-testnet-ogmios +.PHONY: autogen-deps run-testnet-node run-testnet-ogmios clean .SHELLFLAGS := -eu -o pipefail -c ps-sources := $(shell fd -epurs) @@ -28,3 +28,12 @@ run-datum-cache-postgres-console: query-testnet-tip: CARDANO_NODE_SOCKET_PATH=${node-ipc}/node.socket cardano-cli query tip \ --testnet-magic 1097911063 + +clean: + @ rm -rf dist-newstyle || true + @ rm -rf .psc-ide-port || true + @ rm -rf .psci_modules || true + @ rm -rf .spago || true + @ rm -rf .spago2nix || true + @ rm -rf node_modules || true + @ rm -rf output || true