File: Makefile.am

package info (click to toggle)
sleuthkit 4.6.5-1%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 39,264 kB
  • sloc: ansic: 171,812; cpp: 44,216; sh: 31,364; java: 17,674; makefile: 1,241; xml: 838; perl: 797; python: 707; sed: 16
file content (23 lines) | stat: -rwxr-xr-x 780 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
AM_CPPFLAGS = -I../.. -I$(srcdir)/../..
AM_CFLAGS += -Wmultichar -Wsign-promo -Wno-overloaded-virtual
AM_CXXFLAGS += -Wmultichar -Wsign-promo -Wno-overloaded-virtual
EXTRA_DIST = .indent.pro

noinst_LTLIBRARIES = libtskauto.la
# Note that the .h files are in the top-level Makefile
libtskauto_la_SOURCES = auto.cpp auto_db.cpp db_sqlite.cpp \
	db_postgresql.cpp case_db.cpp guid.cpp tsk_db.cpp tsk_case_db.h \
	tsk_auto.h tsk_auto_i.h tsk_case_db.h tsk_db.h tsk_db_sqlite.h \
	tsk_db_postgresql.h db_connection_info.h guid.h is_image_supported.cpp \
    tsk_is_image_supported.h

# Compile the bundled sqlite3 if there isn't an existing lib to use
if !HAVE_LIBSQLITE3
libtskauto_la_SOURCES += sqlite3.c sqlite3.h
endif

indent:
	indent *.cpp *.h

clean-local:
	-rm -f *.cpp~ *.h~