Skip to content

Commit

Permalink
Added make clean to Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
bladyjoker committed Jun 14, 2022
1 parent 693ebf1 commit 5ebe6aa
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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

0 comments on commit 5ebe6aa

Please sign in to comment.