-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
59 lines (49 loc) · 1.12 KB
/
Makefile
File metadata and controls
59 lines (49 loc) · 1.12 KB
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
55
56
57
58
59
# Makefile
# $Header: /space/home/eng/cjm/cvs/ioo/Makefile,v 1.1 2013-03-21 16:14:26 cjm Exp $
include ../Makefile.common
include Makefile.common
DIRS = java ccd
top:
@for i in $(DIRS); \
do \
(echo making in $$i...; cd $$i; $(MAKE) ); \
done;
checkin:
-@for i in $(DIRS); \
do \
(echo checkin in $$i...; cd $$i; $(MAKE) checkin; $(CI) $(CI_OPTIONS) Makefile); \
done;
checkout:
@for i in $(DIRS); \
do \
(echo checkout in $$i...; cd $$i; $(CO) $(CO_OPTIONS) Makefile; $(MAKE) checkout); \
done;
depend:
@for i in $(DIRS); \
do \
(echo depend in $$i...; cd $$i; $(MAKE) depend);\
done;
clean:
$(RM) $(RM_OPTIONS) $(TIDY_OPTIONS)
@for i in $(DIRS); \
do \
(echo clean in $$i...; cd $$i; $(MAKE) clean); \
done;
tidy:
$(RM) $(RM_OPTIONS) $(TIDY_OPTIONS)
@for i in $(DIRS); \
do \
(echo tidy in $$i...; cd $$i; $(MAKE) tidy); \
done;
backup: checkin
@for i in $(DIRS); \
do \
(echo backup in $$i...; cd $$i; $(MAKE) backup); \
done;
$(RM) $(RM_OPTIONS) $(TIDY_OPTIONS)
$(RM) $(RM_OPTIONS) */core.*
tar cvf $(BACKUP_DIR)/o.tar .
compress $(BACKUP_DIR)/o.tar
#
# $Log: not supported by cvs2svn $
#