20 lines
709 B
Makefile
20 lines
709 B
Makefile
ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS}
|
|
|
|
bin_PROGRAMS = ag
|
|
ag_SOURCES = src/ignore.c src/ignore.h src/log.c src/log.h src/options.c src/options.h src/print.c src/print.h src/scandir.c src/scandir.h src/search.c src/search.h src/lang.c src/lang.h src/util.c src/util.h src/decompress.c src/decompress.h src/uthash.h src/main.c
|
|
ag_LDADD = ${PCRE_LIBS} ${LZMA_LIBS} ${ZLIB_LIBS} $(PTHREAD_LIBS)
|
|
|
|
dist_man_MANS = doc/ag.1
|
|
|
|
bashcompdir = $(pkgdatadir)/completions
|
|
dist_bashcomp_DATA = ag.bashcomp.sh
|
|
|
|
# Uncomment this line to output gprof profiling info. This hurts performance.
|
|
#CFLAGS=-pg
|
|
|
|
EXTRA_DIST = Makefile.w32 LICENSE NOTICE the_silver_searcher.spec README.md
|
|
|
|
test:
|
|
cram -v tests/*.t
|
|
|
|
.PHONY : all test clean
|