pomo/config.mk

23 lines
434 B
Makefile
Raw Normal View History

2015-11-28 13:08:54 +00:00
# spt version
2016-02-01 00:24:44 +00:00
VERSION = 0.1
2015-11-28 13:08:54 +00:00
# Customize below to fit your system
# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man
# includes and libs
INCS = -I. -I/usr/include \
`pkg-config --cflags libnotify`
LIBS = -L/usr/lib \
`pkg-config --libs libnotify`
# flags
CPPFLAGS = -DVERSION=\"${VERSION}\"
2016-02-01 00:24:44 +00:00
CFLAGS += -g -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
2015-11-28 13:08:54 +00:00
LDFLAGS += -g ${LIBS}
# compiler and linker
# CC = cc