Changeset 248 for trunk/test/Makefile.am
- Timestamp:
- Apr 29, 2007, 1:18:04 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/Makefile.am
r221 r248 22 22 # 02111-1307, USA. 23 23 24 TESTS = gnuplot_pipe parser 24 check_PROGRAMS = gnuplot_pipe parser 25 26 TESTS = $(check_PROGRAMS) 27 # this test is only for developers since we do not distribute test repository 25 28 if WCTESTS 26 TESTS += directory file29 TESTS += test_repo.sh 27 30 endif 28 29 check_PROGRAMS = $(TESTS)30 31 31 32 LDADD = $(STATICFLAG) @top_builddir@/lib/libsvndigest.la … … 33 34 AM_CPPFLAGS = -I@top_srcdir@/lib 34 35 35 directory_SOURCES = directory.cc36 file_SOURCES = file.cc37 36 gnuplot_pipe_SOURCES = gnuplot_pipe.cc 38 37 parser_SOURCES = parser.cc 39 38 39 test_repo.sh: test_repo.in Makefile.am 40 @echo \#!$(SHELL) > $@; 41 @echo srcdir=$(srcdir) >> $@; 42 @echo top_builddir=$(top_builddir) >> $@; 43 @echo targetdir=$(srcdir)/generated_output >> $@; 44 @cat test_repo.in >> $@; 45 @chmod 744 $@; 46 @echo create $@; 47 40 48 clean-local: 41 rm -rf *.png *.tmp *~ 49 rm -rf *.png *.tmp *~ test_repo.sh $(srcdir)/generated_output; 50
Note: See TracChangeset
for help on using the changeset viewer.