| OLD | NEW |
| 1 AUTOMAKE_OPTIONS = foreign no-dependencies | 1 AUTOMAKE_OPTIONS = foreign no-dependencies |
| 2 | 2 |
| 3 AM_CFLAGS = -I$(top_srcdir) -I$(top_srcdir)/compat | 3 AM_CFLAGS = -I$(top_srcdir) -I$(top_srcdir)/compat |
| 4 | 4 |
| 5 EXTRA_DIST = regress.rpc regress.gen.h regress.gen.c | 5 EXTRA_DIST = regress.rpc regress.gen.h regress.gen.c |
| 6 | 6 |
| 7 noinst_PROGRAMS = test-init test-eof test-weof test-time regress bench | 7 noinst_PROGRAMS = test-init test-eof test-weof test-time regress bench |
| 8 | 8 |
| 9 BUILT_SOURCES = regress.gen.c regress.gen.h | 9 BUILT_SOURCES = regress.gen.c regress.gen.h |
| 10 test_init_SOURCES = test-init.c | 10 test_init_SOURCES = test-init.c |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 $(top_srcdir)/event_rpcgen.py $(srcdir)/regress.rpc || echo "No Python i
nstalled" | 26 $(top_srcdir)/event_rpcgen.py $(srcdir)/regress.rpc || echo "No Python i
nstalled" |
| 27 | 27 |
| 28 DISTCLEANFILES = *~ | 28 DISTCLEANFILES = *~ |
| 29 | 29 |
| 30 test: test-init test-eof test-weof test-time regress | 30 test: test-init test-eof test-weof test-time regress |
| 31 | 31 |
| 32 verify: test | 32 verify: test |
| 33 @$(srcdir)/test.sh | 33 @$(srcdir)/test.sh |
| 34 | 34 |
| 35 bench test-init test-eof test-weof test-time: ../libevent.la | 35 bench test-init test-eof test-weof test-time: ../libevent.la |
| OLD | NEW |