mirror of
https://github.com/libevent/libevent.git
synced 2025-01-31 09:12:55 +08:00
a36d4a930d
Use $top_srcdir and $srcdir variables to refer to source paths in Makefile.am. This makes it possible to build libevent from a separate directory. Patch from Kelly Anderson. svn:r400
15 lines
287 B
Makefile
15 lines
287 B
Makefile
AUTOMAKE_OPTIONS = foreign no-dependencies
|
|
|
|
LDADD = ../libevent.la
|
|
AM_CFLAGS = -I$(top_srcdir)/compat
|
|
|
|
noinst_PROGRAMS = event-test time-test signal-test
|
|
|
|
event_test_sources = event-test.c
|
|
time_test_sources = time-test.c
|
|
signal_test_sources = signal-test.c
|
|
|
|
verify:
|
|
|
|
DISTCLEANFILES = *~
|