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: -rw-r--r-- 534 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
ACLOCAL_AMFLAGS = -I m4
AM_CPPFLAGS = $(FW_INCLUDE) $(TSK_INCLUDE)
LDFLAGS="-lexif"

# this will be true if libexif was found by configure. 
# We don't have configure fail at runtime because then no modules
# can be compiled. 
if HAS_LIBEXIF

lib_LTLIBRARIES = libtskLibExifModule.la
libtskLibExifModule_la_SOURCES = LibExifModule.cpp
libtskLibExifModule_la_LIBADD = $(FW_LIBS)

else

bin_PROGRAMS = no_libmagic

.PHONY: no_libmagic
no_libmagic_SOURCES = 
no_libmagic:
	@echo "Nothing to do for ExifModule, libexif not found."

endif