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

« back to all changes in this revision

Viewing changes to source/daemons/shadowd/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
SHADOWD_DIR = $(SDIR)/daemons/shadowd
 
36
 
 
37
SHADOWD_TARGETS = sge_shadowd
 
38
 
 
39
SHADOWD_SRC =   shadowd.c 
 
40
 
 
41
SHADOWD_ADD_SRC = sig_handlers.c qmaster_heartbeat.c \
 
42
               startprog.c lock.c \
 
43
               usage.c sge_options.c shutdown.c sge_mt_init.c
 
44
 
 
45
SHADOWD_OBJS = $(SHADOWD_SRC:.c=.o)
 
46
 
 
47
SHADOWD_ADD_OBJS = $(SHADOWD_ADD_SRC:.c=.o)
 
48
        
 
49
SHADOWD_ADD_LIBS = -lgdi -lsgeobjd -lsgeobj $(SECLIB) $(KRBLIB) -lcull -lrmon -lcomm -lcommlists -luti $(WINGRIDLIB) -llck $(DLLIB)
 
50
 
 
51
SHADOWD_LIB_DEPENDS = $(SCHEDLIB) $(GDILIB) $(SGEOBJLIB) $(SGEOBJDLIB) $(KRBLIBS) $(CULLLIB) $(RMONLIB) $(COMMLIB) $(COMMLISTSLIB) $(WINGRIDLIB_DEP) $(UTILIB) $(LCKLIB) $(TPLIB)
 
52
 
 
53
###############################################################################
 
54
# global rules: all, clean, depend, messages
 
55
###############################################################################
 
56
shadowd: $(SHADOWD_TARGETS)
 
57
        
 
58
shadowd_clean:
 
59
        $(RM) $(SHADOWD_TARGETS) $(SHADOWD_OBJS)
 
60
 
 
61
shadowd_depend:
 
62
        $(DEPEND) -f$(SHADOWD_DIR)/shadowd_dependencies $(SHADOWD_DIR)/*.c
 
63
 
 
64
shadowd_messages:
 
65
        @echo Creating $@
 
66
        @for i in `ls $(SHADOWD_DIR)/*.c`; do \
 
67
           $(CC) $(CFLAGS) -DEXTRACT_MESSAGES -E $$i | $(XGETTEXT) - ; \
 
68
        done
 
69
 
 
70
 
 
71
###############################################################################
 
72
# rules to build binaries
 
73
###############################################################################
 
74
sge_shadowd:    $(SHADOWD_OBJS) $(SHADOWD_ADD_OBJS) $(SHADOWD_LIB_DEPENDS)
 
75
                $(LD_WRAPPER) $(CC) -o $@ $(LFLAGS) $(SHADOWD_OBJS) $(SHADOWD_ADD_OBJS) $(SHADOWD_ADD_LIBS) $(SLIBS) $(LIBS)
 
76
 
 
77
###############################################################################
 
78
# include dependencies for object files generated by sge_depend
 
79
###############################################################################
 
80
include $(SHADOWD_DIR)/shadowd_dependencies
 
81
 
 
82
###############################################################################
 
83
# rules to build object codes
 
84
###############################################################################
 
85
shadowd.o:      $(SHADOWD_DIR)/shadowd.c
 
86
                $(CC) $(CFLAGS) -c $(SHADOWD_DIR)/shadowd.c
 
87
        echo $(SHADOWD_OBJS)