Move signal re-registration to the end of the signal handler
[dvtm.git] / config.mk
blob932ee0cd4fe530eed7b89752af64412b02004e41
1 # dvtm version
2 VERSION = 0.6
4 # Customize below to fit your system
6 PREFIX = /usr/local
7 MANPREFIX = ${PREFIX}/share/man
9 INCS = -I. -I/usr/include -I/usr/local/include
10 LIBS = -lc -lutil -lncursesw
11 #LIBS = -lc -lutil -lncurses
13 CFLAGS += -std=c99 -Os ${INCS} -DVERSION=\"${VERSION}\" -DNDEBUG
14 LDFLAGS += -L/usr/lib -L/usr/local/lib ${LIBS}
16 # Mouse handling
17 CFLAGS += -DCONFIG_MOUSE
18 #CFLAGS += -DCONFIG_CMDFIFO
19 CFLAGS += -DCONFIG_STATUSBAR
21 DEBUG_CFLAGS = ${CFLAGS} -UNDEBUG -O0 -g -ggdb -Wall
23 CC = cc