summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 0 insertions, 18 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 0e9fe75..0000000
--- a/Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-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