summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 0e9fe7555931e22ff8f60bc9f6b63cc8f76e302e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
SRCDIR := $(shell pwd)
NAME := $(shell basename $(SRCDIR))
include ../common/Makefile


checkcvs:
	for file in fire* moz* fin*; \
	do \
		if [ -f /home/extras/CVS/firefox/devel/$$file ]; then \
			echo "--------- $$file (firefox)"; \
			diff -u /home/extras/CVS/firefox/devel/$$file $$file; \
		elif [ -f /home/extras/CVS/xulrunner/devel/$$file ]; then \
			echo "--------- $$file (xulrunner)"; \
			diff -u /home/extras/CVS/xulrunner/devel/$$file $$file; \
		else \
			echo "--------- $$file NOTFOUND"; \
		fi; \
	done