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

« back to all changes in this revision

Viewing changes to source/clients/qconf/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
QCONF_DIR = $(SDIR)/clients/qconf
 
36
 
 
37
QCONF_TARGETS = qconf
 
38
 
 
39
QCONF_SRC = qconf.c \
 
40
            parse_qconf.c \
 
41
            sge_client_access.c \
 
42
            sge_cuser_qconf.c
 
43
 
 
44
QCONF_ADD_SRC = \
 
45
               usage.c \
 
46
               sge_options.c \
 
47
               sig_handlers.c \
 
48
               sge_hgroup_qconf.c \
 
49
               sge_centry_qconf.c \
 
50
               sge_cqueue_qconf.c \
 
51
               sge_resource_quota_qconf.c \
 
52
               sge_mt_init.c
 
53
 
 
54
QCONF_OBJS = $(QCONF_SRC:.c=.o) 
 
55
 
 
56
QCONF_ADD_OBJS = $(QCONF_ADD_SRC:.c=.o) libspoolc.a
 
57
 
 
58
QCONF_ADD_LIBS = -lspool -lsched -lgdi -lsgeobj -lsgeobjd $(SECLIB) $(KRBLIB) -lcull -lcomm -lcommlists -luti $(WINGRIDLIB) -llck -lrmon $(DLLIB)
 
59
 
 
60
QCONF_LIB_DEPENDS = $(SPOOLFLIB) $(SPOOLCLIB) $(SPOOLLIB) $(SCHEDLIB) $(GDILIB) $(SGEOBJLIB) $(SGEOBJDLIB) $(KRBLIBS) $(CULLLIB) $(COMMLIB) $(COMMLISTSLIB) $(WINGRIDLIB_DEP) $(UTILIB) $(LCKLIB) $(RMONLIB) $(TPLIB)
 
61
 
 
62
###############################################################################
 
63
# global rules: all, clean, depend, messages
 
64
###############################################################################
 
65
qconf_clean:
 
66
        $(RM) $(QCONF_TARGETS) $(QCONF_OBJS)
 
67
 
 
68
qconf_depend:
 
69
                $(DEPEND) -f$(QCONF_DIR)/qconf_dependencies $(QCONF_DIR)/*.c
 
70
 
 
71
qconf_messages:
 
72
        @echo Creating $@
 
73
        @for i in `ls $(QCONF_DIR)/*.c`; do \
 
74
                $(CC) $(CFLAGS) -DEXTRACT_MESSAGES -E $$i | $(XGETTEXT) - ; \
 
75
        done
 
76
 
 
77
 
 
78
###############################################################################
 
79
# rules to build binaries
 
80
###############################################################################
 
81
qconf: $(QCONF_OBJS) $(QCONF_ADD_OBJS) $(QCONF_LIB_DEPENDS)
 
82
                $(LD_WRAPPER) $(CC) -o $@ $(LFLAGS) $(QCONF_OBJS) $(QCONF_ADD_OBJS) $(QCONF_ADD_LIBS) $(SLIBS) $(LIBS)
 
83
 
 
84
###############################################################################
 
85
# include dependencies for object files generated by sge_depend
 
86
###############################################################################
 
87
include $(QCONF_DIR)/qconf_dependencies
 
88
 
 
89
###############################################################################
 
90
# rules to build object codes
 
91
###############################################################################
 
92
sge_client_access.o: $(QCONF_DIR)/sge_client_access.c
 
93
                $(CC) $(CFLAGS) -c $(QCONF_DIR)/sge_client_access.c
 
94
 
 
95
sge_cuser_qconf.o: $(QCONF_DIR)/sge_cuser_qconf.c
 
96
                $(CC) $(CFLAGS) -c $(QCONF_DIR)/sge_cuser_qconf.c
 
97
 
 
98
parse_qconf.o:  $(QCONF_DIR)/parse_qconf.c
 
99
                $(CC) $(CFLAGS) $(MEMCFLAG) -c $(QCONF_DIR)/parse_qconf.c
 
100
 
 
101
qconf.o:        $(QCONF_DIR)/qconf.c
 
102
                $(CC) $(CFLAGS) -c $(QCONF_DIR)/qconf.c