-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
53 lines (43 loc) · 1.06 KB
/
Makefile
File metadata and controls
53 lines (43 loc) · 1.06 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
# Makefile
# $Header: /home/cjm/cvs/autobooter/Makefile,v 1.1 2007-01-09 15:00:18 cjm Exp $
include ../Makefile.common
MAKE = make
DIRS = java latex
top:
@for i in $(DIRS); \
do \
(echo making in $$i...; $(MAKE) -C $$i); \
done;
checkin:
-@for i in $(DIRS); \
do \
(echo checkin in $$i...; $(MAKE) -C $$i checkin; cd $$i; $(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:
echo autobooter package has no depend at the moment.
clean:
-$(RM) $(RM_OPTIONS) $(TIDY_OPTIONS)
@for i in $(DIRS); \
do \
(echo clean in $$i...; $(MAKE) -C $$i clean); \
done;
tidy:
-$(RM) $(RM_OPTIONS) $(TIDY_OPTIONS)
@for i in $(DIRS); \
do \
(echo tidy in $$i...; $(MAKE) -C $$i tidy); \
done;
backup: checkin
@for i in $(DIRS); \
do \
(echo backup in $$i...; $(MAKE) -C $$i backup); \
done;
-$(RM) $(RM_OPTIONS) $(TIDY_OPTIONS)
tar cvf $(BACKUP_DIR)/autobooter.tar .
compress $(BACKUP_DIR)/autobooter.tar
# $Log: not supported by cvs2svn $