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 (22 lines) | stat: -rw-r--r-- 809 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
AM_CXXFLAGS = $(AM_CXXFLAGS_MOD)

lib_LTLIBRARIES = libtskInterestingFilesModule.la
libtskInterestingFilesModule_la_SOURCES = InterestingFilesModule.cpp
libtskInterestingFilesModule_la_LIBADD = $(AM_LIBADD_MOD)

nobase_dist_data_DATA = tsk/InterestingFilesModule/interesting_files.xml

.PHONY: maybe_copy_configs setup_data
bin_PROGRAMS = maybe_copy_configs setup_data

setup_data_SOURCES = 
setup_data:
	-mkdir -p tsk/InterestingFilesModule
	(cd tsk/InterestingFilesModule; ln -sf ../../interesting_files.xml .)

MODULE_CONFIG_DIR = $(RUNTIME_MODULES_CONFIG_DIR)/tskInterestingFilesModule

maybe_copy_configs_SOURCES =
maybe_copy_configs:
		mkdir -p $(MODULE_CONFIG_DIR); \
		(cd $(MODULE_CONFIG_DIR); ln -sf $(MODULES_ROOT_DIR)/c_InterestingFilesModule/tsk/InterestingFilesModule/interesting_files.xml .);