2000-06-15 19:28:21 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2000-04-17 11:36:29 +00:00
|
|
|
# $Id$
|
|
|
|
|
2000-04-13 09:19:23 +00:00
|
|
|
bin_PROGRAMS = echoping
|
2000-06-15 19:28:21 +00:00
|
|
|
man_MANS = echoping.1
|
2000-09-27 05:38:29 +00:00
|
|
|
echoping_SOURCES = echoping.c error.c readline.c writen.c util.c http.c icp.c HTParse.c echoping.h icp.h HTParse.h smtp.c
|
2000-04-13 09:19:23 +00:00
|
|
|
echoping_LDADD =
|
2000-06-30 09:44:24 +00:00
|
|
|
DOCS=DETAILS
|
2000-04-13 09:19:23 +00:00
|
|
|
|
2000-06-25 14:23:00 +00:00
|
|
|
TESTS=test-echoping-local test-echoping-remote test-echoping-icp
|
2000-11-06 13:30:41 +00:00
|
|
|
MORE_TESTS=test-echoping-crypto
|
2000-06-25 14:23:00 +00:00
|
|
|
|
|
|
|
test: check
|
|
|
|
tests: check
|
|
|
|
|
2001-01-26 10:30:50 +00:00
|
|
|
upload: dist
|
2001-01-26 14:39:32 +00:00
|
|
|
@echo "Have you updated ChangeLog and tagged (cvs tag RELEASE_x_x_x) everything?"
|
2001-01-26 10:30:50 +00:00
|
|
|
@echo "If so, make upload-force"
|
|
|
|
|
|
|
|
upload-force: dist
|
2001-01-26 14:39:32 +00:00
|
|
|
scp $(distdir).tar.gz bortz@ftp.internatif.org:'~ftp/pub/unix/echoping'
|
2001-01-26 10:30:50 +00:00
|
|
|
ncftpput -d upload.log upload.sourceforge.net /incoming $(distdir).tar.gz
|
|
|
|
|
2000-11-06 13:30:41 +00:00
|
|
|
EXTRA_DIST = $(man_MANS) $(TESTS) $(DOCS) $(MORE_TESTS)
|
2000-06-25 18:55:56 +00:00
|
|
|
|
2000-06-15 19:28:21 +00:00
|
|
|
## Otherwise, we depend on GNUmake, but for CVS users, not for regular
|
|
|
|
## tarball users
|
|
|
|
##AUTOMAKE_OPTIONS = no-dependencies
|
|
|
|
|
|
|
|
|
|
|
|
|