mirror of
https://github.com/tmux/tmux.git
synced 2025-03-15 23:08:47 +00:00
dist target.
This commit is contained in:
parent
1717764134
commit
0d9ebaafb1
15
Makefile
15
Makefile
@ -1,4 +1,4 @@
|
|||||||
# $Id: Makefile,v 1.41 2007-11-16 21:31:03 nicm Exp $
|
# $Id: Makefile,v 1.42 2007-11-20 12:00:16 nicm Exp $
|
||||||
|
|
||||||
.SUFFIXES: .c .o .y .h
|
.SUFFIXES: .c .o .y .h
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
@ -63,6 +63,10 @@ CFLAGS+= -DUSE_LIBUTIL_H
|
|||||||
|
|
||||||
OBJS= ${SRCS:S/.c/.o/:S/.y/.o/}
|
OBJS= ${SRCS:S/.c/.o/:S/.y/.o/}
|
||||||
|
|
||||||
|
DISTDIR= ${PROG}-${VERSION}
|
||||||
|
DISTFILES= *.[chyl] Makefile GNUmakefile *.[1-9] NOTES TODO \
|
||||||
|
`find examples compat -type f -and ! -path '*CVS*'`
|
||||||
|
|
||||||
CLEANFILES= ${PROG} *.o .depend *~ ${PROG}.core *.log
|
CLEANFILES= ${PROG} *.o .depend *~ ${PROG}.core *.log
|
||||||
|
|
||||||
.c.o:
|
.c.o:
|
||||||
@ -80,6 +84,15 @@ ${PROG}: ${OBJS}
|
|||||||
depend:
|
depend:
|
||||||
mkdep ${CFLAGS} ${INCDIRS} ${SRCS:M*.c}
|
mkdep ${CFLAGS} ${INCDIRS} ${SRCS:M*.c}
|
||||||
|
|
||||||
|
dist: clean
|
||||||
|
grep '^#DEBUG=' Makefile
|
||||||
|
grep '^#DEBUG=' GNUmakefile
|
||||||
|
[ "`(grep '^VERSION' Makefile; grep '^VERSION' GNUmakefile)| \
|
||||||
|
uniq -u`" = "" ]
|
||||||
|
tar -zc \
|
||||||
|
-s '/.*/${DISTDIR}\/\0/' \
|
||||||
|
-f ${DISTDIR}.tar.gz ${DISTFILES}
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
lint -cehvx ${CFLAGS:M-D*} ${SRCS:M*.c}
|
lint -cehvx ${CFLAGS:M-D*} ${SRCS:M*.c}
|
||||||
|
|
||||||
|
4
TODO
4
TODO
@ -55,6 +55,7 @@
|
|||||||
is missing (like, eg, xterm-color in an aterm)
|
is missing (like, eg, xterm-color in an aterm)
|
||||||
- refer to windows by name etc (duplicates? fnmatch?)
|
- refer to windows by name etc (duplicates? fnmatch?)
|
||||||
- commands:
|
- commands:
|
||||||
|
start server
|
||||||
kill server
|
kill server
|
||||||
command to run something without a window at all?
|
command to run something without a window at all?
|
||||||
command to insert a key into a window (send-key)
|
command to insert a key into a window (send-key)
|
||||||
@ -67,9 +68,6 @@
|
|||||||
some -s after, some no -s, there are various uses of -n. the differences are
|
some -s after, some no -s, there are various uses of -n. the differences are
|
||||||
sort of logical, but confusing. needs rethought
|
sort of logical, but confusing. needs rethought
|
||||||
|
|
||||||
-- For 0.1 --------------------------------------------------------------------
|
|
||||||
-
|
|
||||||
|
|
||||||
-- For 0.2 --------------------------------------------------------------------
|
-- For 0.2 --------------------------------------------------------------------
|
||||||
- copy and paste
|
- copy and paste
|
||||||
- window splitting?
|
- window splitting?
|
||||||
|
Loading…
Reference in New Issue
Block a user