You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lnav/src/Makefile.am

109 lines
1.8 KiB
Makefile

bin_PROGRAMS = lnav
noinst_PROGRAMS = bin2c
noinst_LIBRARIES = libdiag.a
help.c: help.txt bin2c
./bin2c -z -c $< $@
AM_LDFLAGS = \
$(SQLITE3_LDFLAGS) \
$(PCRE_LDFLAGS) \
-pthread \
$(STATIC_LDFLAGS)
AM_CPPFLAGS = \
-Wall \
$(SQLITE3_CFLAGS)
LDADD = \
libdiag.a \
$(READLINE_LIBS) \
$(CURSES_LIB) \
$(SQLITE3_LIBS) \
-lpcrecpp \
-lcrypto
noinst_HEADERS = \
auto_fd.hh \
auto_mem.hh \
auto_temp_file.hh \
bookmarks.hh \
bottom_status_source.hh \
byte_array.hh \
column_namer.hh \
data_scanner.hh \
data_parser.hh \
db_sub_source.hh \
grapher.hh \
grep_highlighter.hh \
grep_proc.hh \
help.hh \
help.txt \
hist_source.hh \
line_buffer.hh \
listview_curses.hh \
lnav.hh \
lnav_commands.hh \
lnav_util.hh \
log_format.hh \
logfile.hh \
logfile_sub_source.hh \
pcrepp.hh \
piper_proc.hh \
readline_curses.hh \
sequence_matcher.hh \
sequence_sink.hh \
statusview_curses.hh \
strnatcmp.h \
strong_int.hh \
termios_guard.hh \
textfile_sub_source.hh \
textview_curses.hh \
time_T.hh \
top_status_source.hh \
view_curses.hh \
vt52_curses.hh \
log_vtab_impl.hh \
log_format_impls.cc \
xterm_mouse.hh
libdiag_a_SOURCES = \
bookmarks.cc \
collation-functions.cc \
extension-functions.c \
grep_proc.cc \
hist_source.cc \
line_buffer.cc \
listview_curses.cc \
lnav_commands.cc \
log_format.cc \
logfile.cc \
logfile_sub_source.cc \
network-extension-functions.cc \
data_scanner.cc \
data_parser.cc \
readline_curses.cc \
sequence_matcher.cc \
statusview_curses.cc \
piper_proc.cc \
strnatcmp.c \
textview_curses.cc \
view_curses.cc \
vt52_curses.cc \
log_vtab_impl.cc \
xterm_mouse.cc
lnav_SOURCES = lnav.cc $(HELP_SRC)
lnav_LDADD = help.o $(LDADD)
bin2c_SOURCES = bin2c.c
DISTCLEANFILES = help.c
uncrusty:
(cd $(srcdir) && uncrustify -c ../lnav.cfg --replace $(SOURCES) \
$(HEADERS))