Add release script
This commit is contained in:
parent
037fd6bedb
commit
ac4137d905
2
Makefile
2
Makefile
|
@ -1,4 +1,4 @@
|
||||||
CFLAGS=-Wall -Wextra -Werror -std=c99 -pedantic -O2
|
CFLAGS=-Wall -Wextra -Werror -std=c99 -pedantic -O3 -s
|
||||||
|
|
||||||
backlight-control: main.c
|
backlight-control: main.c
|
||||||
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
||||||
|
|
|
@ -35,3 +35,7 @@ bindsym XF86MonBrightnessDown exec backlight-control -1
|
||||||
"on-scroll-down": "backlight-control -1"
|
"on-scroll-down": "backlight-control -1"
|
||||||
},
|
},
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Building a release
|
||||||
|
|
||||||
|
Run `./build.sh` to build using Docker. This builds with a Debian container.
|
||||||
|
|
Loading…
Reference in a new issue