summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-05-13 23:27:00 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-05-13 23:27:00 +0000
commitc8cf438d44f7a4cd6700dbf9621329bffd960bf5 (patch)
tree7959216ce7a758ca94acbd13881ee6f434590916 /Makefile
parente1b4a377222c53a186de6dabca5cb0068a1c7738 (diff)
Rename all feature flags to HAVE_* and move out of makefiles into a configure
script which must be run before building. Still two makefiles but they are a hell of a lot simpler. HAVE_* also will make it easier to move to $buildsystem if necessary later.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile140
1 files changed, 18 insertions, 122 deletions
diff --git a/Makefile b/Makefile
index 1898e3c8..58b2e934 100644
--- a/Makefile
+++ b/Makefile
@@ -1,154 +1,50 @@
-# $Id: Makefile,v 1.131 2009-05-13 22:10:39 nicm Exp $
+# $Id: Makefile,v 1.132 2009-05-13 23:27:00 nicm Exp $
-.SUFFIXES: .c .o .y .h
-.PHONY: clean update-index.html upload-index.html
+.SUFFIXES: .c .o
+.PHONY: clean
-PROG= tmux
VERSION= 0.9
-OS!= uname
-REL!= uname -r
-DATE!= date +%Y%m%d-%H%M
-
FDEBUG= 1
-SRCS= tmux.c server.c server-msg.c server-fn.c buffer.c buffer-poll.c status.c \
- xmalloc.c xmalloc-debug.c input.c input-keys.c \
- screen.c screen-write.c screen-redraw.c \
- grid.c grid-view.c \
- window.c session.c log.c client.c client-msg.c client-fn.c cfg.c \
- layout.c key-string.c key-bindings.c resize.c arg.c mode-key.c \
- cmd.c cmd-generic.c cmd-string.c cmd-list.c \
- cmd-detach-client.c cmd-list-sessions.c cmd-new-window.c cmd-bind-key.c \
- cmd-unbind-key.c cmd-previous-window.c cmd-last-window.c cmd-list-keys.c \
- cmd-set-option.c cmd-rename-window.c cmd-select-window.c \
- cmd-list-windows.c cmd-attach-session.c cmd-send-prefix.c \
- cmd-refresh-client.c cmd-kill-window.c cmd-list-clients.c \
- cmd-link-window.c cmd-unlink-window.c cmd-next-window.c cmd-send-keys.c \
- cmd-swap-window.c cmd-rename-session.c cmd-kill-session.c \
- cmd-switch-client.c cmd-has-session.c cmd-scroll-mode.c cmd-copy-mode.c \
- cmd-paste-buffer.c cmd-new-session.c cmd-start-server.c \
- cmd-kill-server.c cmd-set-window-option.c cmd-show-options.c \
- cmd-show-window-options.c cmd-command-prompt.c cmd-set-buffer.c \
- cmd-show-buffer.c cmd-list-buffers.c cmd-delete-buffer.c \
- cmd-list-commands.c cmd-move-window.c cmd-select-prompt.c \
- cmd-respawn-window.c cmd-source-file.c cmd-server-info.c cmd-down-pane.c \
- cmd-clock-mode.c cmd-lock-server.c cmd-set-password.c cmd-up-pane.c \
- cmd-save-buffer.c cmd-select-pane.c cmd-split-window.c cmd-kill-pane.c \
- cmd-resize-pane.c cmd-choose-window.c cmd-choose-session.c \
- cmd-suspend-client.c cmd-find-window.c cmd-load-buffer.c \
- cmd-copy-buffer.c cmd-break-pane.c cmd-swap-pane.c cmd-rotate-window.c \
- cmd-confirm-before.c cmd-next-layout.c cmd-previous-layout.c \
- window-clock.c window-scroll.c window-more.c window-copy.c \
- window-choose.c \
- options.c options-cmd.c paste.c colour.c utf8.c clock.c \
- tty.c tty-term.c tty-keys.c tty-write.c util.c names.c attributes.c
+CC?= cc
+CFLAGS+= -DBUILD="\"$(VERSION)\""
+CPPFLAGS:= -I. -I- -I/usr/local/include ${CPPFLAGS}
+LDFLAGS+= -L/usr/local/lib
+LIBS+= -lutil -lncurses
-CC?= c
-INCDIRS+= -I. -I- -I/usr/local/include
-.ifdef PROFILE
-# Don't use ccache
-CC= /usr/bin/gcc
-CFLAGS+= -pg -DPROFILE -O0
-.endif
.ifdef FDEBUG
-CFLAGS+= -g -ggdb -DDEBUG
LDFLAGS+= -Wl,-E
-CFLAGS+= -DBUILD="\"$(VERSION) ($(DATE))\""
-.else
-CFLAGS+= -DBUILD="\"$(VERSION)\""
-.endif
-#CFLAGS+= -pedantic -std=c99
+CFLAGS+= -g -ggdb -DDEBUG
CFLAGS+= -Wno-long-long -Wall -W -Wnested-externs -Wformat=2
CFLAGS+= -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations
CFLAGS+= -Wwrite-strings -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare
CFLAGS+= -Wundef -Wbad-function-cast -Winline -Wcast-align
+.endif
PREFIX?= /usr/local
INSTALLDIR= install -d
INSTALLBIN= install -g bin -o root -m 555
INSTALLMAN= install -g bin -o root -m 444
-LDFLAGS+= -L/usr/local/lib
-.ifdef PROFILE
-LDFLAGS+= -pg
-.endif
-LIBS+= -lutil -lncurses
-
-# FreeBSD and DragonFly
-.if ${OS} == "FreeBSD" || ${OS} == "DragonFly"
-INCDIRS+= -Icompat
-CFLAGS+= -DUSE_LIBUTIL_H -DNO_QUEUE_H -DNO_TREE_H
-LIBS+= -lcrypt
-.endif
-
-# NetBSD
-.if ${OS} == "NetBSD"
-INCDIRS+= -Icompat
-SRCS+= compat/strtonum.c
-LIBS+= -lcrypt
-CFLAGS+=-DNO_STRTONUM -DNO_QUEUE_H
-.endif
-
-OSDEP!= [ -f osdep-${OS:L}.c ] && echo ${OS:L} || echo unknown
-SRCS+= osdep-${OSDEP}.c
-
-OBJS= ${SRCS:S/.c/.o/:S/.y/.o/}
-
-DISTDIR= ${PROG}-${VERSION}
-DISTFILES= *.[chyl] Makefile GNUmakefile *.[1-9] NOTES TODO CHANGES FAQ \
- `find examples compat -type f -and ! -path '*CVS*'`
-
-CLEANFILES= ${PROG} *.o .depend *~ ${PROG}.core *.log compat/*.o index.html
-
-CPPFLAGS:= ${INCDIRS} ${CPPFLAGS}
+SRCS!= echo *.c|sed 's|osdep-[a-z0-9]*.c||g'
+.include "config.mk"
+OBJS= ${SRCS:S/.c/.o/}
.c.o:
${CC} ${CPPFLAGS} ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET}
-.y.o:
- ${YACC} ${.IMPSRC}
- ${CC} ${CPPFLAGS} ${CFLAGS} -c y.tab.c -o ${.TARGET}
-
-all: ${PROG}
-
-${PROG}: ${OBJS}
- ${CC} ${LDFLAGS} -o ${PROG} ${OBJS} ${LIBS}
+all: ${OBJS}
+ ${CC} ${LDFLAGS} -o tmux ${OBJS} ${LIBS}
depend:
mkdep ${CPPFLAGS} ${CFLAGS} ${SRCS:M*.c}
-dist: clean
- grep '^#FDEBUG=' Makefile
- grep '^#FDEBUG=' GNUmakefile
- [ "`(grep '^VERSION' Makefile; grep '^VERSION' GNUmakefile)| \
- uniq -u`" = "" ]
- tar -zc \
- -s '/.*/${DISTDIR}\/\0/' \
- -f ${DISTDIR}.tar.gz ${DISTFILES}
-
-lint:
- lint -chvx ${CFLAGS:M-D*} ${SRCS:M*.c}
-
clean:
- rm -f ${CLEANFILES}
-
-upload-index.html: update-index.html
- scp index.html images/*.png \
- nicm,tmux@web.sf.net:/home/groups/t/tm/tmux/htdocs
- rm -f images/small-*
-
-update-index.html:
- (cd images && \
- rm -f small-* && \
- for i in *.png; do \
- convert "$$i" -resize 200x150 "small-$$i"; \
- done \
- )
- sed "s/%%VERSION%%/${VERSION}/g" index.html.in >index.html
+ rm -f tmux *.o .depend *~ *.core *.log compat/*.o
install: all
${INSTALLDIR} ${DESTDIR}${PREFIX}/bin
- ${INSTALLBIN} ${PROG} ${DESTDIR}${PREFIX}/bin/
+ ${INSTALLBIN} tmux ${DESTDIR}${PREFIX}/bin/
${INSTALLDIR} ${DESTDIR}${PREFIX}/man/man1
- ${INSTALLMAN} ${PROG}.1 ${DESTDIR}${PREFIX}/man/man1/
+ ${INSTALLMAN} tmux.1 ${DESTDIR}${PREFIX}/man/man1/