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
|
|
|
|
2000-07-06 02:51:34 +04:00
|
|
|
DIRS= public nglsrc default\windows
|
1999-09-02 22:18:31 +04:00
|
|
|
|
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
|
|
|
|
|
|
|
|