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

« back to all changes in this revision

Viewing changes to source/utilbin/windows/GUI_test/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
#___INFO__MARK_BEGIN__
 
2
##########################################################################
 
3
#
 
4
#  The Contents of this file are made available subject to the terms of
 
5
#  the Sun Industry Standards Source License Version 1.2
 
6
#
 
7
#  Sun Microsystems Inc., March, 2001
 
8
#
 
9
#
 
10
#  Sun Industry Standards Source License Version 1.2
 
11
#  =================================================
 
12
#  The contents of this file are subject to the Sun Industry Standards
 
13
#  Source License Version 1.2 (the "License"); You may not use this file
 
14
#  except in compliance with the License. You may obtain a copy of the
 
15
#  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
16
#
 
17
#  Software provided under this License is provided on an "AS IS" basis,
 
18
#  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
19
#  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
20
#  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
21
#  See the License for the specific provisions governing your rights and
 
22
#  obligations concerning the Software.
 
23
#
 
24
#  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
25
#
 
26
#  Copyright: 2001 by Sun Microsystems, Inc.
 
27
#
 
28
#  All Rights Reserved.
 
29
#
 
30
##########################################################################
 
31
#___INFO__MARK_END__
 
32
 
 
33
###############################################################################
 
34
# Variable definitions for targets to build
 
35
###############################################################################
 
36
GUITEST_DIR = $(SDIR)/utilbin/windows/GUI_test
 
37
 
 
38
GUITEST_TARGETS = GUI_test.exe
 
39
 
 
40
GUITEST_SRC = GUI_test.cpp
 
41
 
 
42
GUITEST_OBJS = $(GUITEST_SRC:.cpp=.obj)
 
43
 
 
44
GUITEST_WINLFLAGS = /SUBSYSTEM:WINDOWS $(WINLFLAGS)
 
45
 
 
46
###############################################################################
 
47
# global rules: all, clean, depend, messages
 
48
###############################################################################
 
49
 
 
50
gui_test: $(GUITEST_TARGETS)
 
51
 
 
52
gui_test_clean: 
 
53
        $(RM) $(GUITEST_TARGETS) $(GUITEST_OBJS)
 
54
        $(RM) GUI_Test.ilk GUI_Test.pdb vc70.pdb vc70.idb
 
55
 
 
56
gui_test_depend:
 
57
        echo "no depend for gui_test"
 
58
        # $(DEPEND) -f$(GUITEST_DIR)/GUI_test_dependencies $(GUITEST_DIR)/*.cpp
 
59
 
 
60
###############################################################################
 
61
# rules to build binaries
 
62
###############################################################################
 
63
 
 
64
all: $(GUITEST_TARGETS) 
 
65
 
 
66
GUI_test.exe: $(GUITEST_OBJS) 
 
67
        $(WINCC) $(GUITEST_OBJS) /link /OUT:GUI_test.exe $(GUITEST_WINLFLAGS) $(WINLIBS)
 
68
 
 
69
GUI_test.obj: $(GUITEST_DIR)/GUI_test.cpp
 
70
        $(WINCC) $(WINCFLAGS) -c $(GUITEST_DIR)/GUI_test.cpp
 
71