1
0
mirror of https://github.com/imapsync/imapsync.git synced 2024-11-17 00:02:29 +01:00
imapsync/Makefile

149 lines
3.3 KiB
Makefile
Raw Normal View History

2011-03-12 03:39:59 +01:00
2011-03-12 03:44:51 +01:00
# $Id: Makefile,v 1.28 2010/02/25 23:17:25 gilles Exp gilles $
2011-03-12 03:39:59 +01:00
TARGET=imapsync
.PHONY: help usage all
help: usage
usage:
@echo " $(TARGET) $(VERSION), You can do :"
2011-03-12 03:44:47 +01:00
@echo "make install # as root"
@echo "make testf # run tests"
@echo "make testv # run tests verbosely"
2011-03-12 03:44:51 +01:00
@echo "make test3xx # run tests with (last) Mail-IMAPClient-3.xy"
2011-03-12 03:44:47 +01:00
@echo "make test229 # run tests with Mail-IMAPClient-2.2.9"
@echo "make all "
2011-03-12 03:39:59 +01:00
2011-03-12 03:43:45 +01:00
all: ChangeLog README VERSION
2011-03-12 03:39:59 +01:00
2011-03-12 03:44:51 +01:00
.PHONY: test tests testp testf test3xx
2011-03-12 03:39:59 +01:00
.test: $(TARGET) tests.sh
2011-03-12 03:44:47 +01:00
/usr/bin/time sh tests.sh 1>/dev/null
2011-03-12 03:39:59 +01:00
touch .test
2011-03-12 03:44:47 +01:00
.test_3xx: $(TARGET) tests.sh
2011-03-12 03:44:51 +01:00
CMD_PERL='perl -I./Mail-IMAPClient-3.23/lib' /usr/bin/time sh tests.sh 1>/dev/null
2011-03-12 03:44:47 +01:00
touch .test_3xx
test_quick : test_quick_229 test_quick_3xx
test_quick_229: $(TARGET) tests.sh
CMD_PERL='perl -I./Mail-IMAPClient-2.2.9' /usr/bin/time sh tests.sh locallocal 1>/dev/null
test_quick_3xx: $(TARGET) tests.sh
2011-03-12 03:44:51 +01:00
CMD_PERL='perl -I./Mail-IMAPClient-3.23/lib' /usr/bin/time sh tests.sh locallocal 1>/dev/null
2011-03-12 03:44:47 +01:00
2011-03-12 03:39:59 +01:00
testv:
2011-03-12 03:44:22 +01:00
nice -40 sh -x tests.sh
2011-03-12 03:39:59 +01:00
2011-03-12 03:44:47 +01:00
test: .test_229 .test_3xx
2011-03-12 03:44:51 +01:00
tests: test
2011-03-12 03:44:47 +01:00
test3xx: .test_3xx
test229: .test_229
.test_229: $(TARGET) tests.sh
CMD_PERL='perl -I./Mail-IMAPClient-2.2.9' /usr/bin/time sh tests.sh 1>/dev/null
touch .test_229
2011-03-12 03:39:59 +01:00
testf: clean_test test
testp :
perl -c $(TARGET)
ChangeLog: $(TARGET)
rlog $(TARGET) > ChangeLog
README: $(TARGET)
perldoc -t $(TARGET) > README
2011-03-12 03:40:54 +01:00
VERSION: $(TARGET) Makefile
2011-03-12 03:44:47 +01:00
perl -I./Mail-IMAPClient-2.2.9 ./$(TARGET) --version > VERSION
2011-03-12 03:40:54 +01:00
2011-03-12 03:39:59 +01:00
.PHONY: clean clean_tilde clean_test
2011-03-12 03:44:47 +01:00
clean: clean_tilde clean_man
2011-03-12 03:39:59 +01:00
clean_test:
2011-03-12 03:44:48 +01:00
rm -f .test .test_3xx .test_229
2011-03-12 03:39:59 +01:00
clean_tilde:
rm -f *~
2011-03-12 03:44:29 +01:00
.PHONY: install dist man
2011-03-12 03:39:59 +01:00
2011-03-12 03:44:29 +01:00
man: $(TARGET).1
clean_man:
rm -f $(TARGET).1
$(TARGET).1: $(TARGET)
pod2man $(TARGET) > $(TARGET).1
install: testp $(TARGET).1
install -D $(TARGET) $(DESTDIR)/usr/bin/$(TARGET)
install -D $(TARGET).1 $(DESTDIR)/usr/share/man/man1/$(TARGET).1
2011-03-12 03:44:13 +01:00
chmod 755 $(DESTDIR)/usr/bin/$(TARGET)
2011-03-12 03:39:59 +01:00
2011-03-12 03:44:29 +01:00
2011-03-12 03:39:59 +01:00
DIST_NAME=$(TARGET)-$(VERSION)
DIST_FILE=$(DIST_NAME).tgz
2011-03-12 03:44:13 +01:00
DEB_FILE=$(DIST_NAME).deb
2011-03-12 03:44:47 +01:00
VERSION=$(shell perl -I./Mail-IMAPClient-2.2.9 ./$(TARGET) --version)
dist: cidone test clean clean_dist all INSTALL tarball
2011-03-12 03:39:59 +01:00
2011-03-12 03:44:47 +01:00
tarball:
2011-03-12 03:39:59 +01:00
echo making tarball $(DIST_FILE)
mkdir -p dist
mkdir -p ../prepa_dist/$(DIST_NAME)
2011-03-12 03:44:49 +01:00
rsync -aCv --delete --omit-dir-times --exclude dist/ ./ ../prepa_dist/$(DIST_NAME)
#sync && sync && sync && sleep 2
cd ../prepa_dist && (tar czfv $(DIST_FILE) $(DIST_NAME) || tar czfv $(DIST_FILE) $(DIST_NAME))
2011-03-12 03:44:34 +01:00
ln -f ../prepa_dist/$(DIST_FILE) dist/
cd dist && md5sum $(DIST_FILE) > $(DIST_FILE).md5.txt
cd dist && md5sum -c $(DIST_FILE).md5.txt
2011-03-12 03:39:59 +01:00
2011-03-12 03:44:13 +01:00
deb:
echo making debball $(DEB_FILE)
mkdir -p ../prepa_deb
2011-03-12 03:44:48 +01:00
cd ../prepa_deb && tar xzvf ../prepa_dist/$(DIST_FILE) &&\
2011-03-12 03:44:13 +01:00
cd ../prepa_dist/$(DIST_NAME)
2011-03-12 03:39:59 +01:00
.PHONY: cidone clean_dist
cidone:
rcsdiff RCS/*
clean_dist:
2011-03-12 03:44:34 +01:00
echo Used to be 'rm -f dist/*'
2011-03-12 03:39:59 +01:00
# Local goals
2011-03-12 03:44:50 +01:00
.PHONY: lfo lfo_upload niouze_lfo niouze_fm public
2011-03-12 03:39:59 +01:00
2011-03-12 03:44:50 +01:00
lfo: dist lfo_upload niouze_lfo
2011-03-12 03:44:29 +01:00
lfo_upload:
2011-03-12 03:44:35 +01:00
rsync -avH --delete . \
2011-03-12 03:39:59 +01:00
/home/gilles/public_html/www.linux-france.org/html/prj/$(TARGET)/
2011-03-12 03:44:35 +01:00
rsync -avH --delete ../prepa_dist/imapsync-*tgz \
2011-03-12 03:44:29 +01:00
/home/gilles/public_html/www.linux-france.org/ftp/prj/$(TARGET)/
2011-03-12 03:39:59 +01:00
sh ~/memo/lfo-rsync
2011-03-12 03:44:32 +01:00
niouze_lfo : VERSION
2011-03-12 03:43:54 +01:00
. memo && lfo_announce
2011-03-12 03:44:32 +01:00
2011-03-12 03:44:50 +01:00
niouze_fm: VERSION
2011-03-12 03:44:21 +01:00
. memo && fm_announce
2011-03-12 03:44:29 +01:00
2011-03-12 03:44:50 +01:00
public: niouze_fm