Brief command output for your Makefile commands
with bpkg:
$ bpkg install jwerle/brief.mkwith curl:
$ curl https://raw.githubusercontent.com/jwerle/brief.mk/master/brief.mk -o brief.mkwith wget:
$ wget https://raw.githubusercontent.com/jwerle/brief.mk/master/brief.mk## commands to make brief
BREIFC = CC
-include brief.mk
SRC = beep.c boop.c
OBJS = $(SRC:.c=.o)
$(OBJS):
$(CC) $(CFLAGS) $(@:.o=.c) -o $(@) CC beep.o
CC boop.o
MIT