-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
83 lines (73 loc) · 1.84 KB
/
Makefile
File metadata and controls
83 lines (73 loc) · 1.84 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Makefile
# $Header: /space/home/eng/cjm/cvs/libdprt/Makefile,v 1.8 2014-08-01 09:51:22 cjm Exp $
include ../Makefile.common
include Makefile.common
# Note we must make the object library before rjs and ccs
# Note we must make rjs before ccs
# Note we must make jni_general before ccs
# Note replaced rjs by ccd_imager
DIRS = object ccd_imager jni_general ccs scs supircam ftspec grope frodospec o sprat
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: tidy checkin
@for i in $(DIRS); \
do \
(echo backup in $$i...; cd $$i; $(MAKE) backup); \
done;
tar cvf $(BACKUP_DIR)/libdprt.tar .
compress $(BACKUP_DIR)/libdprt.tar
# $Log: not supported by cvs2svn $
# Revision 1.7 2012/10/15 11:07:16 eng
# Added o dir
#
# Revision 1.6 2012/10/15 11:05:17 cjm
# Added frodospec.
#
# Revision 1.5 2007/06/20 13:31:36 cjm
# Changed -C's back to cd's - Solaris doesn't support -C.
#
# Revision 1.4 2007/01/09 15:35:31 cjm
# Changed 'cd's to make -C.
#
# Revision 1.3 2005/11/29 16:03:46 cjm
# Added grope directory.
#
# Revision 1.2 2001/05/15 16:43:57 cjm
# New libdprt version.
#
# Revision 1.1 2001/05/15 16:42:15 cjm
# Initial revision
#
# Revision 1.1 1999/12/10 12:26:20 cjm
# Initial revision
#