1998-07-09 12:42:58 +04:00
|
|
|
#//------------------------------------------------------------------------
|
|
|
|
#//
|
|
|
|
#// Makefile to build the MODULES\APPLET tree
|
|
|
|
#//
|
|
|
|
#//------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#//------------------------------------------------------------------------
|
|
|
|
#//
|
|
|
|
#// Specify the depth of the current directory relative to the
|
|
|
|
#// root of NS
|
|
|
|
#//
|
|
|
|
#//------------------------------------------------------------------------
|
|
|
|
DEPTH=..\..
|
|
|
|
|
|
|
|
#//------------------------------------------------------------------------
|
|
|
|
#//
|
|
|
|
#// Specify any "command" targets. (ie. DIRS, INSTALL_FILES, ...)
|
|
|
|
#// (these must come before the common makefiles are included)
|
|
|
|
#//
|
|
|
|
#// DIRS - There are subdirectories to process
|
|
|
|
#//
|
|
|
|
#//------------------------------------------------------------------------
|
1999-09-02 22:18:31 +04:00
|
|
|
|
2001-08-10 11:35:54 +04:00
|
|
|
DIRS= base\public base\src samples\default\windows
|
1999-09-02 22:18:31 +04:00
|
|
|
|
2001-12-31 12:06:13 +03:00
|
|
|
!ifndef DISABLE_TESTS
|
|
|
|
DIRS = $(DIRS) samples\simple
|
|
|
|
!endif
|
|
|
|
|
1998-07-09 12:42:58 +04:00
|
|
|
#//------------------------------------------------------------------------
|
|
|
|
#//
|
|
|
|
#// Include the common makefile rules
|
|
|
|
#//
|
|
|
|
#//------------------------------------------------------------------------
|
|
|
|
include <$(DEPTH)\config\rules.mak>
|
1999-07-02 03:32:54 +04:00
|
|
|
|
1999-07-02 05:22:21 +04:00
|
|
|
PLUGIN_DIR=\
|
|
|
|
$(DIST)\bin\plugins \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
$(PLUGIN_DIR):
|
|
|
|
mkdir $@
|
|
|
|
|
|
|
|
export:: $(PLUGIN_DIR)
|
1999-07-02 03:32:54 +04:00
|
|
|
|
|
|
|
clobber::
|
1999-07-07 08:20:31 +04:00
|
|
|
rm -r -f $(DIST)\bin\plugins
|
1999-07-02 03:32:54 +04:00
|
|
|
|
|
|
|
|