~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/libs/mir/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
###############################################################################
 
2
# Variable definitions for targets to build
 
3
###############################################################################
 
4
#___INFO__MARK_BEGIN__
 
5
##########################################################################
 
6
#
 
7
#  The Contents of this file are made available subject to the terms of
 
8
#  the Sun Industry Standards Source License Version 1.2
 
9
#
 
10
#  Sun Microsystems Inc., March, 2001
 
11
#
 
12
#
 
13
#  Sun Industry Standards Source License Version 1.2
 
14
#  =================================================
 
15
#  The contents of this file are subject to the Sun Industry Standards
 
16
#  Source License Version 1.2 (the "License"); You may not use this file
 
17
#  except in compliance with the License. You may obtain a copy of the
 
18
#  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
19
#
 
20
#  Software provided under this License is provided on an "AS IS" basis,
 
21
#  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
22
#  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
23
#  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
24
#  See the License for the specific provisions governing your rights and
 
25
#  obligations concerning the Software.
 
26
#
 
27
#  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
28
#
 
29
#  Copyright: 2001 by Sun Microsystems, Inc.
 
30
#
 
31
#  All Rights Reserved.
 
32
#
 
33
##########################################################################
 
34
#___INFO__MARK_END__
 
35
MIRLIB_DIR = $(SDIR)/libs/mir
 
36
 
 
37
MIRLIB = libmir$(LIBEXT)
 
38
 
 
39
MIRLIB_SRC =                           \
 
40
               sge_mirror.c            \
 
41
               sge_job_mirror.c        \
 
42
               sge_ja_task_mirror.c    \
 
43
               sge_pe_task_mirror.c    \
 
44
               sge_host_mirror.c       \
 
45
               sge_queue_mirror.c      \
 
46
               sge_sharetree_mirror.c  \
 
47
               sge_sched_conf_mirror.c
 
48
 
 
49
MIRLIB_TEST_PROGS = test_sge_mirror
 
50
 
 
51
MIRLIB_TEST_SRC = test_sge_mirror.c
 
52
 
 
53
MIRLIB_TEST_OBJS = $(MIRLIB_TEST_SRC:.c=.o)
 
54
 
 
55
MIRLIB_OBJS = $(MIRLIB_SRC:.c=.o)
 
56
 
 
57
###############################################################################
 
58
# global rules: all, clean, depend, messages
 
59
###############################################################################
 
60
mirlib: $(MIRLIB) $(MIRLIB_TEST_PROGS)
 
61
 
 
62
mirlib_clean:
 
63
                $(RM) $(MIRLIB_OBJS) libmir.a libmir$(SHAREDEXT) $(MIRLIB_TEST_PROGS) $(MIRLIB_TEST_OBJS) 
 
64
 
 
65
mirlib_depend:
 
66
                $(DEPEND) -f$(MIRLIB_DIR)/mir_dependencies $(MIRLIB_DIR)/*.c
 
67
 
 
68
mirlib_messages:
 
69
        @echo Creating $@
 
70
        @for i in `ls $(MIRLIB_DIR)/*.c`; do \
 
71
           $(CC) $(CFLAGS) -DEXTRACT_MESSAGES -E $$i | $(XGETTEXT) - ;\
 
72
        done
 
73
 
 
74
###############################################################################
 
75
# rules to build library
 
76
###############################################################################
 
77
libmir.a:       $(MIRLIB_OBJS) 
 
78
        $(AR) $(ARFLAGS) libmir.a $(MIRLIB_OBJS)
 
79
        $(RANLIB) libmir.a
 
80
 
 
81
libmir$(SHAREDEXT): $(MIRLIB_OBJS) $(EVCLIB) $(GDILIB) $(SGEOBJLIB) $(SGEOBJDLIB) $(COMMLIB) $(COMMLISTSLIB) $(CULLLIB) $(UTILIB) $(RMONLIB)
 
82
        $(SHAREDLD) $(SHARED_LFLAGS) -o libmir$(SHAREDEXT) $(MIRLIB_OBJS) -levc -lgdi -lsgeobj -lsgeobjd -lcomm -lcommlists -lcull -luti -lrmon $(LIBS) -lc
 
83
 
 
84
###############################################################################
 
85
# include dependencies for object files generated by sge_depend
 
86
###############################################################################
 
87
include $(MIRLIB_DIR)/mir_dependencies
 
88
 
 
89
###############################################################################
 
90
# rules to build object codes
 
91
###############################################################################
 
92
sge_mirror.o:   $(MIRLIB_DIR)/sge_mirror.c
 
93
                $(CC) $(CFLAGS) $(SHARED_CFLAGS) -c $(MIRLIB_DIR)/sge_mirror.c
 
94
 
 
95
sge_job_mirror.o:       $(MIRLIB_DIR)/sge_job_mirror.c
 
96
                $(CC) $(CFLAGS) $(SHARED_CFLAGS) -c $(MIRLIB_DIR)/sge_job_mirror.c
 
97
 
 
98
sge_ja_task_mirror.o:   $(MIRLIB_DIR)/sge_ja_task_mirror.c
 
99
                $(CC) $(CFLAGS) $(SHARED_CFLAGS) -c $(MIRLIB_DIR)/sge_ja_task_mirror.c
 
100
 
 
101
sge_pe_task_mirror.o:   $(MIRLIB_DIR)/sge_pe_task_mirror.c
 
102
                $(CC) $(CFLAGS) $(SHARED_CFLAGS) -c $(MIRLIB_DIR)/sge_pe_task_mirror.c
 
103
 
 
104
sge_host_mirror.o:      $(MIRLIB_DIR)/sge_host_mirror.c
 
105
                $(CC) $(CFLAGS) $(SHARED_CFLAGS) -c $(MIRLIB_DIR)/sge_host_mirror.c
 
106
 
 
107
sge_queue_mirror.o:     $(MIRLIB_DIR)/sge_queue_mirror.c
 
108
                $(CC) $(CFLAGS) $(SHARED_CFLAGS) -c $(MIRLIB_DIR)/sge_queue_mirror.c
 
109
 
 
110
sge_sharetree_mirror.o: $(MIRLIB_DIR)/sge_sharetree_mirror.c
 
111
                $(CC) $(CFLAGS) $(SHARED_CFLAGS) -c $(MIRLIB_DIR)/sge_sharetree_mirror.c
 
112
 
 
113
sge_sched_conf_mirror.o:        $(MIRLIB_DIR)/sge_sched_conf_mirror.c
 
114
                $(CC) $(CFLAGS) $(SHARED_CFLAGS) -c $(MIRLIB_DIR)/sge_sched_conf_mirror.c
 
115
 
 
116
#---------------------------------------------------------------------
 
117
# test programs
 
118
test_sge_mirror: test_sge_mirror.o sig_handlers.o $(GDILIB) $(CULLLIB) $(UTILIB) $(COMMLIB) $(COMMLISTSLIB) $(RMONLIB) $(WINGRIDLIB_DEP) $(SGEOBJLIB) $(SGEOBJDLIB)
 
119
        $(LD_WRAPPER) $(CC) $(CFLAGS) -o test_sge_mirror $(LFLAGS) test_sge_mirror.o sig_handlers.o -lmir -levc -lgdi -lsgeobj -lsgeobjd -lcomm -lcommlists -lcull -luti $(WINGRIDLIB) -lrmon -llck $(SECLIB) $(SLIBS) $(LIBS) $(DLLIB) -lc
 
120
 
 
121
test_sge_mirror.o: $(MIRLIB_DIR)/test_sge_mirror.c
 
122
        $(CC) $(CFLAGS) -c $(MIRLIB_DIR)/test_sge_mirror.c
 
123