-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
61 lines (51 loc) · 1.32 KB
/
Makefile
File metadata and controls
61 lines (51 loc) · 1.32 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
60
61
# Makefile
# $Header: /home/cjm/cvs/ics_gui/Makefile,v 1.4 2020-04-29 13:56:15 cjm Exp $
include ../Makefile.common
# create_dialog must come before java - it generates source code for the java directory
DIRS = create_dialog java latex
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:
echo there are no dependancies to make....
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;
tar cvf $(BACKUP_DIR)/ics_gui.tar .
compress $(BACKUP_DIR)/ics_gui.tar
# $Log: not supported by cvs2svn $
# Revision 1.3 2007/09/26 17:40:32 cjm
# Swaped back to cd's - Solaris make doesn't support -C.
#
# Revision 1.2 2007/01/09 15:21:56 cjm
# Swapped 'cd's for $(MAKE) -C.
#
# Revision 1.1 2003/11/14 15:26:56 cjm
# Initial revision
#