1998-07-09 08:42:58 +00: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 18:18:31 +00:00
|
|
|
|
1998-07-31 20:19:50 +00:00
|
|
|
DIRS= public nglsrc
|
1999-09-02 18:18:31 +00:00
|
|
|
|
1998-07-09 08:42:58 +00:00
|
|
|
#//------------------------------------------------------------------------
|
|
|
|
#//
|
|
|
|
#// Include the common makefile rules
|
|
|
|
#//
|
|
|
|
#//------------------------------------------------------------------------
|
|
|
|
include <$(DEPTH)\config\rules.mak>
|
1999-07-01 23:32:54 +00:00
|
|
|
|
1999-07-02 01:22:21 +00:00
|
|
|
PLUGIN_DIR=\
|
|
|
|
$(DIST)\bin\plugins \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
$(PLUGIN_DIR):
|
|
|
|
mkdir $@
|
|
|
|
|
|
|
|
export:: $(PLUGIN_DIR)
|
1999-07-01 23:32:54 +00:00
|
|
|
|
|
|
|
clobber::
|
1999-07-07 04:20:31 +00:00
|
|
|
rm -r -f $(DIST)\bin\plugins
|
1999-07-01 23:32:54 +00:00
|
|
|
|
|
|
|
|