mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-16 05:23:03 +01:00
24 lines
660 B
Makefile
24 lines
660 B
Makefile
# Version
|
|
TOXIC_VERSION = 0.5.1
|
|
REV = $(shell git rev-list HEAD --count)
|
|
VERSION = $(TOXIC_VERSION)_r$(REV)
|
|
|
|
# Project directories
|
|
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 = DHTnodes DNSservers toxic.conf.example
|
|
SNDFILES = ContactLogsIn.wav ContactLogsOut.wav Error.wav IncomingCall.wav
|
|
SNDFILES += LogIn.wav LogOut.wav NewMessage.wav OutgoingCall.wav
|
|
SNDFILES += TransferComplete.wav TransferPending.wav
|
|
|
|
# Install directories
|
|
PREFIX = /usr/local
|
|
BINDIR = $(PREFIX)/bin
|
|
DATADIR = $(PREFIX)/share/toxic
|
|
MANDIR = $(PREFIX)/share/man
|