termite/Makefile

25 lines
544 B
Makefile
Raw Normal View History

2012-05-22 06:34:35 +02:00
PREFIX = /usr/local
CFLAGS += -std=c99 -O3 \
-Wall -Wextra -pedantic \
-Winit-self \
-Wshadow \
-Wformat=2 \
-Wmissing-declarations \
$(shell pkg-config --cflags gtk+-2.0 vte)
2012-05-22 06:34:35 +02:00
2012-05-22 09:51:26 +02:00
LDFLAGS += -s -Wl,--as-needed $(shell pkg-config --libs gtk+-2.0 vte)
2012-05-22 06:34:35 +02:00
2012-05-22 15:50:21 +02:00
termite: termite.c config.h
2012-05-22 06:34:35 +02:00
${CC} ${CFLAGS} -o $@ $< ${LDFLAGS}
2012-05-22 15:50:21 +02:00
install: termite
2012-05-22 06:34:35 +02:00
mkdir -p ${DESTDIR}${PREFIX}/bin
2012-05-22 15:50:21 +02:00
cp -f termite ${DESTDIR}${PREFIX}/bin
chmod 755 ${DESTDIR}${PREFIX}/bin/termite
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
.PHONY: install uninstall