OSDN Git Service

modified comments
[opengatem/opengatem.git] / mngsrc / Makefile
index c1038aa..48099c2 100644 (file)
@@ -2,16 +2,16 @@
 ##  some other parameters exist in opengatemmng.h  ########
 ##########################################################
 CONFIGPATH = /etc/opengate        ## directory of config file
-WWWTOP = /usr/local/www/apache24  ## apache directory top
-DOCDIR = /data                   ## apache data directory(related to wwwtop)
-CGIDIR = /cgi-bin                ## apache cgi directory(related to wwtop)
-OPENGATEDIR = /opengate                  ## opengate web directory(related to docdir)
+WWWTOP = /usr/local/www/apache24  ## apache directory top(absolute path)
+DOCDIR = /data                   ## apache data directory(relative path to wwwtop)
+CGIDIR = /cgi-bin                ## apache cgi directory(relative path to wwtop)
+OPENGATEDIR = /opengate                  ## opengate web directory(relative path to docdir)
 
 DOCUMENTROOT = ${WWWTOP}${DOCDIR}
 INSTALLDOCPATH = ${WWWTOP}${DOCDIR}${OPENGATEDIR}
 INSTALLCGIPATH = ${WWWTOP}${CGIDIR}${OPENGATEDIR}
 INSTALLBINPATH = /usr/local/bin   ## install dir of executable file
-MAKEDIR != pwd                 ## save present directory
+MAKEDIR != pwd                 ## save present working directory of MAKE
 
 .if exists(/usr/local/include/mysql)
 CFLAGSMYSQL = -I/usr/local/include/mysql -pipe -fno-strict-aliasing
@@ -26,8 +26,7 @@ LIBSQLITE = -lsqlite3 -lpthread
 LIBLDAP = -lldap -llber
 .endif
 
-## This is memory leak check tool for debugging
-#LIBCCMALLOC = -lccmalloc -L/usr/local/lib
+#LIBCCMALLOC = -lccmalloc -L/usr/local/lib  ## memory leak check tool for debugging
 
 CFLAGS= -g -O3 -Wall -I/usr/local/include ${CFLAGSMYSQL}