Introduction
Introduction Statistics Contact Development Disclaimer Help
config.mk - blind - suckless command-line video editing utility
git clone git://git.suckless.org/blind
Log
Files
Refs
README
LICENSE
---
config.mk (571B)
---
1 # blind version
2 VERSION = 1.1
3
4 # Paths
5 PREFIX = /usr/local
6 MANPREFIX = $(PREFIX)/share/man
7
8 # Dependencies
9 KORN_SHELL = bash
10 # Known to work: bash ksh
11 # Does not work: mksh loksh oksh dash
12
13 # Commands
14 LN = ln -s
15
16 # You may want to remove -DHAVE_PRCTL, -DHAVE_EPOLL, -DHAVE_TEE,
17 # and -DHAVE_SENDFILE from CPPFLAGS if you are not using Linux.
18 CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_GNU_SO…
19 -D_FILE_OFFSET_BITS=64 -DHAVE_PRCTL -DHAVE_EPOLL -DHAVE_TEE -…
20 CFLAGS = -std=c11 -Wall -pedantic -O2 $(CPPFLAGS)
21 LDFLAGS = -lm -s
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.