This file is indexed.

/usr/share/doc/falcon/examples/makefile is in falcon 1.8.8-1ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
default:
	@echo 'Try "make run-foo" for any sub-dir of run/.'
run-%:
	cd run/$*; rm -rf 0-rawreads/ 1-preads_ovl/ 2-asm-falcon/; ls -l; fc_run.py fc_run.cfg logging.ini
clean-%:
	${MAKE} -C run/$* clean
setup-%:
	git-sym update run/$*
	git-sym show run/$*
	git-sym check run/$*
# Our only integration test, for now.
test: full-test import-test ;

.PHONY: import-test
import-test:
	python -c 'import pypeflow.pwatcher_workflow; print pypeflow.pwatcher_workflow'
	python -c 'import falcon_kit; print falcon_kit.falcon'

.PHONY: full-test
full-test:
	${MAKE} run-synth0
	${MAKE} -C run/synth0 test

.PHONY: default