mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-22 14:13:03 +01:00
1e985c1456
- Give window tab and statusbar a make over - Place window tab above input field - Reduce input field to one square in height - Refactor window tab so that it's now a subwin of its parent ToxWindow - Fix bug causing notification counter to sometimes increment by 2 - No longer scroll on output when output is not at bottom of screen - Show a small indicator on far left of window tab when output is not at bottom of screen - Reduce ncurses/UI thread sleep time by half - Handle nanosleep errors better
34 lines
923 B
Makefile
34 lines
923 B
Makefile
# Version
|
|
TOXIC_VERSION = 0.10.0
|
|
REV = $(shell git rev-list HEAD --count 2>/dev/null || echo -n "error")
|
|
ifneq (, $(findstring error, $(REV)))
|
|
VERSION = $(TOXIC_VERSION)
|
|
else
|
|
VERSION = $(TOXIC_VERSION)_r$(REV)
|
|
endif
|
|
|
|
# Project directories
|
|
BUILD_DIR = $(BASE_DIR)/build
|
|
DOC_DIR = $(BASE_DIR)/doc
|
|
SRC_DIR = $(BASE_DIR)/src
|
|
SND_DIR = $(BASE_DIR)/sounds
|
|
MISC_DIR = $(BASE_DIR)/misc
|
|
|
|
# Project files
|
|
MANFILES = toxic.1 toxic.conf.5
|
|
DATAFILES = nameservers toxic.conf.example
|
|
DESKFILE = toxic.desktop
|
|
SNDFILES = ToxicContactOnline.wav ToxicContactOffline.wav ToxicError.wav
|
|
SNDFILES += ToxicRecvMessage.wav ToxicOutgoingCall.wav ToxicIncomingCall.wav
|
|
SNDFILES += ToxicTransferComplete.wav ToxicTransferStart.wav
|
|
|
|
# Install directories
|
|
PREFIX ?= /usr/local
|
|
BINDIR = $(PREFIX)/bin
|
|
DATADIR = $(PREFIX)/share/toxic
|
|
MANDIR ?= $(PREFIX)/share/man
|
|
APPDIR = $(PREFIX)/share/applications
|
|
|
|
# Platform tools
|
|
PKG_CONFIG = pkg-config
|