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

« back to all changes in this revision

Viewing changes to source/clients/qrstat/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
QRSTAT_DIR = $(SDIR)/clients/qrstat
 
36
 
 
37
QRSTAT_TARGETS = qrstat
 
38
 
 
39
QRSTAT_SRC = qrstat.c \
 
40
             qrstat_filter.c \
 
41
             qrstat_report_handler.c \
 
42
             qrstat_report_handler_xml.c \
 
43
             qrstat_report_handler_stdout.c
 
44
 
 
45
QRSTAT_ADD_SRC = usage.c \
 
46
                sge_options.c \
 
47
                parse_job_cull.c \
 
48
                parse_qsub.c \
 
49
                read_defaults.c \
 
50
                sig_handlers.c
 
51
 
 
52
QRSTAT_OBJS = $(QRSTAT_SRC:.c=.o)
 
53
 
 
54
QRSTAT_ADD_OBJS = $(QRSTAT_ADD_SRC:.c=.o)
 
55
 
 
56
QRSTAT_ADD_LIBS = -lgdi -lsgeobj -lsgeobjd $(SECLIB) $(KRBLIB) -lcull -lcomm -lcommlists -luti $(WINGRIDLIB) -llck -lrmon $(DLLIB)
 
57
 
 
58
QRSTAT_LIB_DEPENDS = $(GDILIB) $(SGEOBJLIB) $(SGEOBJDLIB) $(KRBLIBS) $(CULLLIB) $(COMMLIB) $(COMMLISTSLIB) $(WINGRIDLIB_DEP) $(UTILIB) $(LCKLIB) $(RMONLIB) $(TPLIB)
 
59
 
 
60
###############################################################################
 
61
# global rules: all, clean, depend, messages
 
62
###############################################################################
 
63
qrstat_clean:
 
64
        $(RM) $(QRSTAT_TARGETS) $(QRSTAT_OBJS)
 
65
 
 
66
qrstat_depend:
 
67
                $(DEPEND) -f$(QRSTAT_DIR)/qrstat_dependencies $(QRSTAT_DIR)/*.c
 
68
 
 
69
qrstat_messages:
 
70
        @echo Creating $@
 
71
        @for i in `ls $(QRSTAT_DIR)/*.c`; do \
 
72
                $(CC) $(CFLAGS) -DEXTRACT_MESSAGES -E $$i | $(XGETTEXT) - ; \
 
73
        done
 
74
 
 
75
 
 
76
###############################################################################
 
77
# rules to build binaries
 
78
###############################################################################
 
79
qrstat: $(QRSTAT_OBJS) $(QRSTAT_ADD_OBJS) $(QRSTAT_LIB_DEPENDS)
 
80
                $(LD_WRAPPER) $(CC) -o $@ $(LFLAGS) $(QRSTAT_OBJS) $(QRSTAT_ADD_OBJS) $(QRSTAT_ADD_LIBS) $(SLIBS) $(LIBS)
 
81
 
 
82
###############################################################################
 
83
# include dependencies for object files generated by sge_depend
 
84
###############################################################################
 
85
include $(QRSTAT_DIR)/qrstat_dependencies
 
86
 
 
87
###############################################################################
 
88
# rules to build object codes
 
89
###############################################################################
 
90
qrstat.o:       $(QRSTAT_DIR)/qrstat.c
 
91
                $(CC) $(CFLAGS) -c $(QRSTAT_DIR)/qrstat.c
 
92
 
 
93
qrstat_report_handler.o:        $(QRSTAT_DIR)/qrstat_report_handler.c
 
94
                $(CC) $(CFLAGS) -c $(QRSTAT_DIR)/qrstat_report_handler.c
 
95
 
 
96
qrstat_report_handler_xml.o:    $(QRSTAT_DIR)/qrstat_report_handler_xml.c
 
97
                $(CC) $(CFLAGS) -c $(QRSTAT_DIR)/qrstat_report_handler_xml.c
 
98
 
 
99
qrstat_report_handler_stdout.o:         $(QRSTAT_DIR)/qrstat_report_handler_stdout.c
 
100
                $(CC) $(CFLAGS) -c $(QRSTAT_DIR)/qrstat_report_handler_stdout.c
 
101
 
 
102
qrstat_filter.o:        $(QRSTAT_DIR)/qrstat_filter.c
 
103
                $(CC) $(CFLAGS) -c $(QRSTAT_DIR)/qrstat_filter.c