https://github.com/jwerle/brief.mk
Brief command output for your Makefile commands
https://github.com/jwerle/brief.mk
Last synced: 5 months ago
JSON representation
Brief command output for your Makefile commands
- Host: GitHub
- URL: https://github.com/jwerle/brief.mk
- Owner: jwerle
- License: mit
- Created: 2014-08-25T15:54:17.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2022-04-13T18:36:50.000Z (about 4 years ago)
- Last Synced: 2025-06-04T02:24:20.228Z (about 1 year ago)
- Language: Makefile
- Size: 2.93 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
brief.mk
========
Brief command output for your Makefile commands
## install
with [bpkg](https://github.com/bpkg/bpkg):
```sh
$ bpkg install jwerle/brief.mk
```
with curl:
```sh
$ curl https://raw.githubusercontent.com/jwerle/brief.mk/master/brief.mk -o brief.mk
```
with wget:
```sh
$ wget https://raw.githubusercontent.com/jwerle/brief.mk/master/brief.mk
```
## usage
```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
```
## license
MIT