19 lines
390 B
Makefile
19 lines
390 B
Makefile
# slstatus version
|
|
VERSION = 1.0
|
|
|
|
# customize below to fit your system
|
|
|
|
# paths
|
|
PREFIX = /usr/local
|
|
MANPREFIX = $(PREFIX)/share/man
|
|
|
|
# flags
|
|
CPPFLAGS = -D_DEFAULT_SOURCE -DALSA -DVERSION=\"${VERSION}\"
|
|
CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wno-unused-parameter -Os
|
|
LDFLAGS = -s
|
|
# OpenBSD: add -lsndio
|
|
# FreeBSD: add -lkvm -lsndio
|
|
LDLIBS = -lasound
|
|
|
|
# compiler and linker
|
|
CC = tcc
|