summaryrefslogtreecommitdiff
path: root/Makefile
blob: 731ec2d92d535d162cc1a450d6269c959f8e45a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
BUILD_DIR := $(shell pwd)/v4l
TMP ?= /tmp
REPO_PULL := http://linuxtv.org/hg/v4l-dvb

ifeq ($(EDITOR),)
  ifeq ($(VISUAL),)
	EDITOR := vi
  else
	EDITOR := $(VISUAL) -w
  endif
endif

all:

install:
	$(MAKE) -C $(BUILD_DIR) install

%::
	$(MAKE) -C $(BUILD_DIR) $(MAKECMDGOALS)

commit cvscommit hgcommit change changes changelog:: whitespace
	@cd $(BUILD_DIR); scripts/cardlist; cd ..
	@v4l/scripts/prep_commit_msg.pl $(TMP)/v4l_hg_whitespace > \
		$(TMP)/v4l_hg_commit.msg
	@CHECKSUM=`md5sum "$(TMP)/v4l_hg_commit.msg"`; \
	$(EDITOR) $(TMP)/v4l_hg_commit.msg || exit $?; \
	echo "$$CHECKSUM" | md5sum -c --status && \
	echo "*** commit message not changed. Aborting. ***" \
	&& exit 13 || exit 0
	grep -v '^#' $(TMP)/v4l_hg_commit.msg | hg commit -l -
	@echo "*** PLEASE CHECK IF LOG IS OK:"
	@hg log -v -r -1
	@echo "*** If not ok, do \"hg rollback\" and \"make commit\" again"

qrefresh: Q=q
qrefresh:: whitespace
	cd $(BUILD_DIR); scripts/cardlist; cd ..
	v4l/scripts/prep_commit_msg.pl -q $(TMP)/v4l_hg_whitespace > \
		$(TMP)/v4l_hg_commit.msg
	$(EDITOR) $(TMP)/v4l_hg_commit.msg
	grep -v '^#' $(TMP)/v4l_hg_commit.msg | hg qrefresh -g -l -

pull update v4l-update::
	@echo "Pulling changes from master repository $(REPO_PULL)"
	-hg pull -u $(REPO_PULL)

push::
	@echo "Pushing changes to master repository"
	-hg push

whitespace whitespaces:
	@echo "Cleaning bad whitespaces"
	@v4l/scripts/strip-trailing-whitespaces.sh $(Q)fast | \
		tee $(TMP)/v4l_hg_whitespace | patch -p0