pomo/config.mk
Ivan Tham 2502641ce2 Fix spt on OSX (no libnotify)
- Thanks for the person who reviewed my code & gave suggestion
    - Fork notify_send() directly
    - What's next? Parallel timer
2016-05-13 23:13:23 +08:00

22 lines
478 B
Makefile

# spt version
VERSION = 0.1
# Customize below to fit your system
# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man
# libnotify - comment if you don't want it (config.h too)
INCS = -I. -I/usr/include `pkg-config --cflags libnotify`
LIBS = -L/usr/lib `pkg-config --libs libnotify`
DEFS = -DNOTIFY
# flags
CPPFLAGS = -DVERSION=\"${VERSION}\"
CFLAGS += -g -std=c99 -pedantic -Wall -Os ${INCS} ${DEFS} ${CPPFLAGS}
LDFLAGS += -g ${LIBS}
# compiler and linker
# CC = cc