Test your websites with this simple GUI based scripted webtester. Generate simple testscripts directly from surfng on the webpage, enhance them with your commands, with variables, loops, checks, … and finally run automated web tests.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.3 KiB
39 lines
1.3 KiB
10 years ago
|
## @id $Id$
|
||
|
|
||
|
## 1 2 3 4 5 6 7 8
|
||
|
## 45678901234567890123456789012345678901234567890123456789012345678901234567890
|
||
|
|
||
|
SUBDIRS = src
|
||
|
|
||
|
doc_DATA = AUTHORS COPYING ChangeLog NEWS README INSTALL
|
||
|
|
||
|
EXTRA_DIST = bootstrap.sh debian
|
||
|
|
||
|
DISTCLEANFILES = debian/changelog
|
||
|
|
||
|
doc_DATA = AUTHORS NEWS README COPYING INSTALL ChangeLog
|
||
|
#@PACKAGE_NAME@.spec
|
||
|
|
||
|
deb: dist
|
||
|
tar xzvf @PACKAGE_TARNAME@-@PACKAGE_VERSION@.tar.gz
|
||
|
cd @PACKAGE_TARNAME@-@PACKAGE_VERSION@ && dpkg-buildpackage
|
||
|
rm -rf @PACKAGE_TARNAME@-@PACKAGE_VERSION@
|
||
|
|
||
|
#rpm: dist
|
||
|
# rpmbuild -ba \
|
||
|
# --define "_topdir $$(pwd)" \
|
||
|
# --define "_sourcedir $$(pwd)" \
|
||
|
# @PACKAGE_NAME@.spec
|
||
|
|
||
|
MAINTAINERCLEANFILES = debian/control aclocal.m4 compile \
|
||
|
configure install-sh ltmain.sh makefile.in \
|
||
|
missing
|
||
|
|
||
|
CLEANFILES = @PACKAGE_TARNAME@-@PACKAGE-VERSION@.tar.gz \
|
||
|
@PACKAGE_TARNAME@_@PACKAGE_VERSION@~@DISTRO@.@BUILD_NUMBER@.dsc \
|
||
|
@PACKAGE_TARNAME@_@PACKAGE_VERSION@~@DISTRO@.@BUILD_NUMBER@.tar.gz \
|
||
|
@PACKAGE_TARNAME@_@PACKAGE_VERSION@~@DISTRO@.@BUILD_NUMBER@_*.deb \
|
||
|
@PACKAGE_TARNAME@_@PACKAGE_VERSION@~@DISTRO@.@BUILD_NUMBER@_*.changes
|
||
|
|
||
|
.PHONY: dep rpm
|