File: local.mk

package info (click to toggle)
quorum 1.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,092 kB
  • sloc: cpp: 21,390; perl: 201; makefile: 90; sh: 81
file content (17 lines) | stat: -rw-r--r-- 496 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Build the easy install script
bin_SCRIPTS += quorum_easy_install
quorum_easy_install: quorum_easy_install.in Makefile
	$(do_subst) < $< > $@
	chmod +x $@
distcheck: quorum_easy_install
dist: quorum_easy_install

AM_CXXFLAGS += -Werror

# Count lines of code
.PHONY: cloc
cloc:
	cloc --force-lang="Ruby,yaggo" --force-lang="make,am" --force-lang="make,mk" \
	  --exclude-dir="gtest" --ignored=cloc_ignored_src_files \
	  $(srcdir)/src $(srcdir)/include \
	  $(srcdir)/Makefile.am $(srcdir)/*.mk