From c4f87b7e77d0a0ef5ed7bd190140b0ef59dbb059 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Thu, 6 Oct 2016 16:48:42 -0700 Subject: [PATCH] Remove list and args from justfile --- justfile | 7 ------- 1 file changed, 7 deletions(-) diff --git a/justfile b/justfile index bfb2985..8f23e23 100644 --- a/justfile +++ b/justfile @@ -2,13 +2,6 @@ test: cargo test --lib cargo run -- quine clean > /dev/null 2> /dev/null -# list all recipies -list: - @$(MAKE) -pRrq -f $(lastword $(MAKEFILE_LIST)) : 2>/dev/null | awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | sort | egrep -v -e '^[^[:alnum:]]' -e '^$@$$' | xargs - -args: - @echo "I got some arguments: ARG0=${ARG0} ARG1=${ARG1} ARG2=${ARG2}" - # make a quine, compile it, and verify it quine: create cc tmp/gen0.c -o tmp/gen0