termite/Makefile

46 lines
1.0 KiB
Makefile
Raw Normal View History

2012-06-20 00:54:38 +02:00
VERSION = $(shell git describe --tags)
2012-05-22 06:34:35 +02:00
PREFIX = /usr/local
2012-06-01 10:15:49 +02:00
GTK = gtk+-3.0
VTE = vte-2.90
TERMINFO = ${PREFIX}/share/terminfo
2012-05-22 20:19:47 +02:00
2012-07-20 16:34:36 +02:00
CXXFLAGS := -std=c++11 -O3 \
-Wall -Wextra -pedantic \
-Winit-self \
-Wshadow \
-Wformat=2 \
-Wmissing-declarations \
-Wstrict-overflow=4 \
-Wcast-align \
-Wcast-qual \
-Wconversion \
-Wunused-macros \
-Wwrite-strings \
-D_POSIX_C_SOURCE=200809L \
2012-07-20 16:34:36 +02:00
-DTERMITE_VERSION=\"${VERSION}\" \
${shell pkg-config --cflags ${GTK} ${VTE}} \
${CXXFLAGS}
ifeq (${CXX}, g++)
CXXFLAGS += -Wno-missing-field-initializers
2012-06-08 03:50:44 +02:00
endif
2012-08-15 02:16:24 +02:00
LDFLAGS := -s -Wl,--as-needed ${LDFLAGS}
LDLIBS := ${shell pkg-config --libs ${GTK} ${VTE}}
2012-05-22 06:34:35 +02:00
2012-10-05 16:55:52 +02:00
termite: termite.cc util/memory.hh url_regex.hh
2012-08-16 11:04:47 +02:00
${CXX} ${CXXFLAGS} ${LDFLAGS} $< ${LDLIBS} -o $@
2012-05-22 06:34:35 +02:00
2012-05-22 15:50:21 +02:00
install: termite
mkdir -p ${DESTDIR}${TERMINFO}
2012-06-27 07:36:39 +02:00
install -Dm755 termite ${DESTDIR}${PREFIX}/bin/termite
tic termite.terminfo -o ${DESTDIR}${TERMINFO}
2012-05-22 06:34:35 +02:00
uninstall:
2012-05-22 15:50:21 +02:00
rm -f ${DESTDIR}${PREFIX}/bin/termite
2012-05-22 06:34:35 +02:00
clean:
rm termite
.PHONY: clean install uninstall