85b5c5b8c9
move dotlocking code to dotlock.c. dotlocking code fixed to ignore whether or not the lockfile exists on open(). we only care about whether fcntl() was able to lock it.
23 lines
596 B
Makefile
23 lines
596 B
Makefile
SUBDIRS=debian
|
|
bin_PROGRAMS=isync
|
|
isync_SOURCES=main.c imap.c sync.c maildir.c isync.h list.c cram.c config.c \
|
|
debug.h dotlock.c dotlock.h
|
|
isync_LDADD=@DEBUGOBJ@
|
|
isync_DEPENDENCIES=@DEBUGOBJ@
|
|
EXTRA_isync_SOURCES=debug.c
|
|
man_MANS=isync.1
|
|
EXTRA_DIST=sample.isyncrc $(man_MANS)
|
|
INCLUDES=$(RPM_OPT_FLAGS)
|
|
DISTCLEANFILES=*~ build-stamp configure-stamp
|
|
|
|
log:
|
|
rcs2log -h sigpipe.org | sed 's;/home/cvs/isync/;;g' > ChangeLog
|
|
|
|
isync.html: isync.1
|
|
groff -Thtml -man isync.1 > isync.html
|
|
|
|
rpm:
|
|
make dist
|
|
cp isync-$(VERSION).tar.gz /usr/src/rpm/SOURCES
|
|
rpm -ba --target=i586 --clean isync.spec
|