DEADSOFTWARE

minor changes
[flatwaifu.git] / Makefile
1 #
2 # Copyright (c) 2009, Sun Microsystems, Inc.
3 # All rights reserved.
4 #
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions are met:
7 #
8 # * Redistributions of source code must retain the above copyright notice,
9 # this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above copyright
11 # notice, this list of conditions and the following disclaimer in
12 # the documentation and/or other materials provided with the distribution.
13 # * Neither the name of Sun Microsystems, Inc. nor the names of its
14 # contributors may be used to endorse or promote products derived
15 # from this software without specific prior written permission.
16 #
17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
23 # TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24 # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25 # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26 # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 #
29 # There exist several targets which are by default empty and which can be
30 # used for execution of your targets. These targets are usually executed
31 # before and after some main targets. They are:
32 #
33 # .build-pre: called before 'build' target
34 # .build-post: called after 'build' target
35 # .clean-pre: called before 'clean' target
36 # .clean-post: called after 'clean' target
37 # .clobber-pre: called before 'clobber' target
38 # .clobber-post: called after 'clobber' target
39 # .all-pre: called before 'all' target
40 # .all-post: called after 'all' target
41 # .help-pre: called before 'help' target
42 # .help-post: called after 'help' target
43 #
44 # Targets beginning with '.' are not intended to be called on their own.
45 #
46 # Main targets can be executed directly, and they are:
47 #
48 # build build a specific configuration
49 # clean remove built files from a configuration
50 # clobber remove all built files
51 # all build all configurations
52 # help print help mesage
53 #
54 # Targets .build-impl, .clean-impl, .clobber-impl, .all-impl, and
55 # .help-impl are implemented in nbproject/makefile-impl.mk.
56 #
57 # Available make variables:
58 #
59 # CND_BASEDIR base directory for relative paths
60 # CND_DISTDIR default top distribution directory (build artifacts)
61 # CND_BUILDDIR default top build directory (object files, ...)
62 # CONF name of current configuration
63 # CND_PLATFORM_${CONF} platform name (current configuration)
64 # CND_ARTIFACT_DIR_${CONF} directory of build artifact (current configuration)
65 # CND_ARTIFACT_NAME_${CONF} name of build artifact (current configuration)
66 # CND_ARTIFACT_PATH_${CONF} path to build artifact (current configuration)
67 # CND_PACKAGE_DIR_${CONF} directory of package (current configuration)
68 # CND_PACKAGE_NAME_${CONF} name of package (current configuration)
69 # CND_PACKAGE_PATH_${CONF} path to package (current configuration)
70 #
71 # NOCDDL
74 # Environment
75 MKDIR=mkdir
76 CP=cp
77 CCADMIN=CCadmin
78 RANLIB=ranlib
81 # build
82 build: .build-post
84 .build-pre:
85 # Add your pre 'build' code here...
87 .build-post: .build-impl
88 # Add your post 'build' code here...
91 # clean
92 clean: .clean-post
94 .clean-pre:
95 # Add your pre 'clean' code here...
97 .clean-post: .clean-impl
98 # Add your post 'clean' code here...
101 # clobber
102 clobber: .clobber-post
104 .clobber-pre:
105 # Add your pre 'clobber' code here...
107 .clobber-post: .clobber-impl
108 # Add your post 'clobber' code here...
111 # all
112 all: .all-post
114 .all-pre:
115 # Add your pre 'all' code here...
117 .all-post: .all-impl
118 # Add your post 'all' code here...
121 # help
122 help: .help-post
124 .help-pre:
125 # Add your pre 'help' code here...
127 .help-post: .help-impl
128 # Add your post 'help' code here...
132 # include project implementation makefile
133 include nbproject/Makefile-impl.mk
135 # include project make variables
136 include nbproject/Makefile-variables.mk