changed: winix project has been moved to 'winixd' subdirectory

in Makefiles we are caltulating relative paths now (by using relative_path program)
	 



git-svn-id: svn://ttmath.org/publicrep/winix/trunk@1030 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
Tomasz Sowa 2016-03-17 13:46:20 +00:00
parent 145efe937c
commit 1286ceeddf
30 changed files with 13818 additions and 9197 deletions

View File

@ -2,6 +2,13 @@
include Makefile.dep include Makefile.dep
# https://www.gnu.org/software/make/manual/html_node/Flavors.html#Flavors
GLOBAL_WORKING_DIR := $(shell pwd)/../..
EZC_ADDITIONAL_INCLUDE := -I$(shell pwd) -I$(GLOBAL_WORKING_DIR)/ezc/src
ifeq ($(CXX), g++) ifeq ($(CXX), g++)
CXX = g++-4.8 CXX = g++-4.8
endif endif
@ -24,11 +31,7 @@ ifndef AR
AR = ar AR = ar
endif endif
ifndef CXXWINIXINCLUDEFLAGS winix_include_paths = -I$(global_relative_working_dir)/winix/winixd -I$(global_relative_working_dir)/ezc/src -I$(global_relative_working_dir)/tito/src -I$(global_relative_working_dir)/pikotools
# these flags are used for compiling and making dependencies (make depend)
# it's better to not using any system directories like -I/usr/local/include here
CXXWINIXINCLUDEFLAGS = -I../../winix -I../../../winix -I../../ezc/src -I../../../ezc/src -I../../tito/src -I../../../tito/src -I../../pikotools -I../../../pikotools
endif
ifndef LDFLAGS ifndef LDFLAGS
LDFLAGS = -L/usr/local/lib LDFLAGS = -L/usr/local/lib
@ -44,9 +47,13 @@ winix_install_dir = /usr/local/winix
export CXX export CXX
export CXXFLAGS export CXXFLAGS
export CXXWINIXINCLUDEFLAGS
export LDFLAGS export LDFLAGS
export EZC_USE_WINIX_LOGGER export EZC_USE_WINIX_LOGGER
export EZC_ADDITIONAL_INCLUDE
export GLOBAL_WORKING_DIR
all: winix.so plugins winix all: winix.so plugins winix
@ -59,10 +66,10 @@ winix.so: $(winix.src.files)
@cd functions ; $(MAKE) -e @cd functions ; $(MAKE) -e
@cd notify ; $(MAKE) -e @cd notify ; $(MAKE) -e
@cd templates ; $(MAKE) -e @cd templates ; $(MAKE) -e
@cd ../ezc/src ; $(MAKE) -e @cd $(GLOBAL_WORKING_DIR)/ezc/src ; $(MAKE) -e
@cd ../tito/src ; $(MAKE) -e @cd $(GLOBAL_WORKING_DIR)/tito/src ; $(MAKE) -e
@cd ../pikotools ; $(MAKE) -e @cd $(GLOBAL_WORKING_DIR)/pikotools ; $(MAKE) -e
$(CXX) -shared -rdynamic -Wl,-whole-archive -o winix.so $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) core/*.o db/*.o functions/*.o templates/*.o notify/*.o ../ezc/src/ezc.a ../tito/src/tito.a ../pikotools/utf8/utf8.a ../pikotools/space/space.a ../pikotools/mainparser/mainparser.a ../pikotools/date/date.a $(LDFLAGS) -lfcgi -lpq -lz -lpthread -lcurl -Wl,-no-whole-archive $(CXX) -shared -rdynamic -Wl,-whole-archive -o winix.so $(CXXFLAGS) $(winix_include_paths) core/*.o db/*.o functions/*.o templates/*.o notify/*.o $(GLOBAL_WORKING_DIR)/ezc/src/ezc.a $(GLOBAL_WORKING_DIR)/tito/src/tito.a $(GLOBAL_WORKING_DIR)/pikotools/utf8/utf8.a $(GLOBAL_WORKING_DIR)/pikotools/space/space.a $(GLOBAL_WORKING_DIR)/pikotools/mainparser/mainparser.a $(GLOBAL_WORKING_DIR)/pikotools/date/date.a $(LDFLAGS) -lfcgi -lpq -lz -lpthread -lcurl -Wl,-no-whole-archive
winix: winix.so $(winix.src.files) winix: winix.so $(winix.src.files)
@ -99,9 +106,9 @@ clean:
@cd plugins/menu ; $(MAKE) -e clean @cd plugins/menu ; $(MAKE) -e clean
@cd plugins/export ; $(MAKE) -e clean @cd plugins/export ; $(MAKE) -e clean
@cd plugins/mailregister ; $(MAKE) -e clean @cd plugins/mailregister ; $(MAKE) -e clean
@cd ../ezc/src ; $(MAKE) -e clean @cd $(GLOBAL_WORKING_DIR)/ezc/src ; $(MAKE) -e clean
@cd ../tito/src ; $(MAKE) -e clean @cd $(GLOBAL_WORKING_DIR)/tito/src ; $(MAKE) -e clean
@cd ../pikotools ; $(MAKE) -e clean @cd $(GLOBAL_WORKING_DIR)/pikotools ; $(MAKE) -e clean
@cd main ; $(MAKE) -e clean @cd main ; $(MAKE) -e clean
rm -f winix.so rm -f winix.so
rm -f winix rm -f winix
@ -124,15 +131,15 @@ depend:
@cd plugins/menu ; $(MAKE) -e depend @cd plugins/menu ; $(MAKE) -e depend
@cd plugins/export ; $(MAKE) -e depend @cd plugins/export ; $(MAKE) -e depend
@cd plugins/mailregister ; $(MAKE) -e depend @cd plugins/mailregister ; $(MAKE) -e depend
@cd ../ezc/src ; $(MAKE) -e depend @cd $(GLOBAL_WORKING_DIR)/ezc/src ; $(MAKE) -e depend
@cd ../tito/src ; $(MAKE) -e depend @cd $(GLOBAL_WORKING_DIR)/tito/src ; $(MAKE) -e depend
@cd ../pikotools ; $(MAKE) -e depend @cd $(GLOBAL_WORKING_DIR)/pikotools ; $(MAKE) -e depend
@cd main ; $(MAKE) -e depend @cd main ; $(MAKE) -e depend
echo -n "winix.src.files = " > Makefile.dep echo -n "winix.src.files = " > Makefile.dep
find -E . -type f -regex ".*\.h|.*\.cpp" | xargs -I foo echo -n foo " " >> Makefile.dep find -E . -type f -regex ".*\.h|.*\.cpp" | xargs -I foo echo -n foo " " >> Makefile.dep
find -E ../ezc/src -type f -regex ".*\.h|.*\.cpp" | xargs -I foo echo -n foo " " >> Makefile.dep find -E $(GLOBAL_WORKING_DIR)/ezc/src -type f -regex ".*\.h|.*\.cpp" | xargs -I foo echo -n foo " " >> Makefile.dep
find -E ../tito/src -type f -regex ".*\.h|.*\.cpp" | xargs -I foo echo -n foo " " >> Makefile.dep find -E $(GLOBAL_WORKING_DIR)/tito/src -type f -regex ".*\.h|.*\.cpp" | xargs -I foo echo -n foo " " >> Makefile.dep
find -E ../pikotools -type f -regex ".*\.h|.*\.cpp" | xargs -I foo echo -n foo " " >> Makefile.dep find -E $(GLOBAL_WORKING_DIR)/pikotools -type f -regex ".*\.h|.*\.cpp" | xargs -I foo echo -n foo " " >> Makefile.dep

File diff suppressed because one or more lines are too long

View File

@ -1,15 +1,20 @@
include Makefile.o.dep include Makefile.o.dep
current_path := $(shell pwd)
global_relative_working_dir := $(shell relative_path $(current_path) $(GLOBAL_WORKING_DIR))
winix_include_paths = -I$(global_relative_working_dir)/winix/winixd -I$(global_relative_working_dir)/ezc/src -I$(global_relative_working_dir)/tito/src -I$(global_relative_working_dir)/pikotools
all: $(o) all: $(o)
%.o: %.cpp %.o: %.cpp
$(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< $(CXX) -c $(CXXFLAGS) $(winix_include_paths) $<
depend: depend:
makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep makedepend -Y. $(winix_include_paths) -f- *.cpp > Makefile.dep
echo -n "o = " > Makefile.o.dep echo -n "o = " > Makefile.o.dep
ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep

File diff suppressed because it is too large Load Diff

View File

@ -1,15 +1,20 @@
include Makefile.o.dep include Makefile.o.dep
current_path := $(shell pwd)
global_relative_working_dir := $(shell relative_path $(current_path) $(GLOBAL_WORKING_DIR))
winix_include_paths = -I$(global_relative_working_dir)/winix/winixd -I$(global_relative_working_dir)/ezc/src -I$(global_relative_working_dir)/tito/src -I$(global_relative_working_dir)/pikotools
all: $(o) all: $(o)
%.o: %.cpp %.o: %.cpp
$(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< $(CXX) -c $(CXXFLAGS) $(winix_include_paths) $<
depend: depend:
makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep makedepend -Y. $(winix_include_paths) -f- *.cpp > Makefile.dep
echo -n "o = " > Makefile.o.dep echo -n "o = " > Makefile.o.dep
ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep

View File

@ -1,75 +1,102 @@
# DO NOT DELETE # DO NOT DELETE
db.o: db.h dbbase.h dbconn.h dbtextstream.h ../../winix/core/textstream.h db.o: db.h dbbase.h dbconn.h dbtextstream.h
db.o: ../../winix/core/misc.h ../../winix/core/item.h db.o: ../../../winix/winixd/core/textstream.h
db.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h db.o: ../../../winix/winixd/core/misc.h ../../../winix/winixd/core/item.h
db.o: ../../pikotools/date/date.h ../../winix/core/requesttypes.h db.o: ../../../pikotools/space/space.h ../../../pikotools/textstream/types.h
db.o: ../../pikotools/textstream/textstream.h db.o: ../../../pikotools/date/date.h
db.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h db.o: ../../../winix/winixd/core/requesttypes.h
db.o: ../../pikotools/membuffer/membuffer.h db.o: ../../../pikotools/textstream/textstream.h
db.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h db.o: ../../../pikotools/convert/convert.h
db.o: ../../winix/core/winix_const.h ../../winix/core/error.h db.o: ../../../pikotools/convert/inttostr.h
db.o: ../../pikotools/space/spaceparser.h ../../pikotools/space/space.h db.o: ../../../pikotools/membuffer/membuffer.h
db.o: dbitemquery.h ../../winix/core/item.h dbitemcolumns.h db.o: ../../../pikotools/textstream/types.h ../../../pikotools/utf8/utf8.h
db.o: ../../winix/core/user.h ../../winix/core/group.h db.o: ../../../winix/winixd/core/winix_const.h
db.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h db.o: ../../../winix/winixd/core/error.h
db.o: ../../winix/core/log.h ../../winix/core/textstream.h db.o: ../../../pikotools/space/spaceparser.h ../../../pikotools/space/space.h
db.o: ../../winix/core/logmanipulators.h ../../winix/core/slog.h db.o: dbitemquery.h ../../../winix/winixd/core/item.h dbitemcolumns.h
db.o: ../../winix/core/cur.h ../../winix/core/request.h db.o: ../../../winix/winixd/core/user.h ../../../winix/winixd/core/group.h
db.o: ../../winix/core/error.h ../../winix/core/config.h db.o: ../../../winix/winixd/core/dircontainer.h
db.o: ../../winix/core/htmlfilter.h ../../winix/templates/htmltextstream.h db.o: ../../../winix/winixd/core/ugcontainer.h
db.o: ../../pikotools/space/spacetojson.h ../../ezc/src/outstreams.h db.o: ../../../winix/winixd/core/log.h
db.o: ../../winix/core/session.h ../../winix/core/user.h db.o: ../../../winix/winixd/core/textstream.h
db.o: ../../winix/core/plugindata.h ../../winix/core/rebus.h db.o: ../../../winix/winixd/core/logmanipulators.h
db.o: ../../winix/core/ipban.h ../../winix/core/mount.h db.o: ../../../winix/winixd/core/slog.h ../../../winix/winixd/core/cur.h
db.o: ../../winix/templates/locale.h ../../winix/core/log.h db.o: ../../../winix/winixd/core/request.h ../../../winix/winixd/core/error.h
db.o: ../../winix/core/misc.h db.o: ../../../winix/winixd/core/config.h
dbbase.o: dbbase.h dbconn.h dbtextstream.h ../../winix/core/textstream.h db.o: ../../../winix/winixd/core/htmlfilter.h
dbbase.o: ../../winix/core/misc.h ../../winix/core/item.h db.o: ../../../winix/winixd/templates/htmltextstream.h
dbbase.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h db.o: ../../../pikotools/space/spacetojson.h ../../../ezc/src/outstreams.h
dbbase.o: ../../pikotools/date/date.h ../../winix/core/requesttypes.h db.o: ../../../winix/winixd/core/session.h ../../../winix/winixd/core/user.h
dbbase.o: ../../pikotools/textstream/textstream.h db.o: ../../../winix/winixd/core/plugindata.h
dbbase.o: ../../pikotools/convert/convert.h db.o: ../../../winix/winixd/core/rebus.h ../../../winix/winixd/core/ipban.h
dbbase.o: ../../pikotools/convert/inttostr.h db.o: ../../../winix/winixd/core/mount.h
dbbase.o: ../../pikotools/membuffer/membuffer.h db.o: ../../../winix/winixd/templates/locale.h
dbbase.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h db.o: ../../../winix/winixd/core/log.h ../../../winix/winixd/core/misc.h
dbbase.o: ../../winix/core/winix_const.h ../../winix/core/error.h dbbase.o: dbbase.h dbconn.h dbtextstream.h
dbbase.o: ../../pikotools/space/spaceparser.h ../../pikotools/space/space.h dbbase.o: ../../../winix/winixd/core/textstream.h
dbbase.o: ../../winix/core/log.h ../../winix/core/misc.h dbbase.o: ../../../winix/winixd/core/misc.h ../../../winix/winixd/core/item.h
dbconn.o: dbconn.h dbtextstream.h ../../winix/core/textstream.h dbbase.o: ../../../pikotools/space/space.h
dbconn.o: ../../winix/core/misc.h ../../winix/core/item.h dbbase.o: ../../../pikotools/textstream/types.h
dbconn.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h dbbase.o: ../../../pikotools/date/date.h
dbconn.o: ../../pikotools/date/date.h ../../winix/core/requesttypes.h dbbase.o: ../../../winix/winixd/core/requesttypes.h
dbconn.o: ../../pikotools/textstream/textstream.h dbbase.o: ../../../pikotools/textstream/textstream.h
dbconn.o: ../../pikotools/convert/convert.h dbbase.o: ../../../pikotools/convert/convert.h
dbconn.o: ../../pikotools/convert/inttostr.h dbbase.o: ../../../pikotools/convert/inttostr.h
dbconn.o: ../../pikotools/membuffer/membuffer.h dbbase.o: ../../../pikotools/membuffer/membuffer.h
dbconn.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h dbbase.o: ../../../pikotools/textstream/types.h
dbconn.o: ../../winix/core/winix_const.h ../../winix/core/log.h dbbase.o: ../../../pikotools/utf8/utf8.h
dbconn.o: ../../winix/core/error.h dbbase.o: ../../../winix/winixd/core/winix_const.h
dbitemcolumns.o: dbitemcolumns.h ../../winix/core/item.h dbbase.h dbconn.h dbbase.o: ../../../winix/winixd/core/error.h
dbitemcolumns.o: dbtextstream.h ../../winix/core/textstream.h dbbase.o: ../../../pikotools/space/spaceparser.h
dbitemcolumns.o: ../../winix/core/misc.h ../../winix/core/item.h dbbase.o: ../../../pikotools/space/space.h ../../../winix/winixd/core/log.h
dbitemcolumns.o: ../../pikotools/space/space.h dbbase.o: ../../../winix/winixd/core/misc.h
dbitemcolumns.o: ../../pikotools/textstream/types.h dbconn.o: dbconn.h dbtextstream.h ../../../winix/winixd/core/textstream.h
dbitemcolumns.o: ../../pikotools/date/date.h ../../winix/core/requesttypes.h dbconn.o: ../../../winix/winixd/core/misc.h ../../../winix/winixd/core/item.h
dbitemcolumns.o: ../../pikotools/textstream/textstream.h dbconn.o: ../../../pikotools/space/space.h
dbitemcolumns.o: ../../pikotools/convert/convert.h dbconn.o: ../../../pikotools/textstream/types.h
dbitemcolumns.o: ../../pikotools/convert/inttostr.h dbconn.o: ../../../pikotools/date/date.h
dbitemcolumns.o: ../../pikotools/membuffer/membuffer.h dbconn.o: ../../../winix/winixd/core/requesttypes.h
dbitemcolumns.o: ../../pikotools/textstream/types.h dbconn.o: ../../../pikotools/textstream/textstream.h
dbitemcolumns.o: ../../pikotools/utf8/utf8.h ../../winix/core/winix_const.h dbconn.o: ../../../pikotools/convert/convert.h
dbitemcolumns.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h dbconn.o: ../../../pikotools/convert/inttostr.h
dbitemcolumns.o: ../../pikotools/space/space.h ../../winix/core/log.h dbconn.o: ../../../pikotools/membuffer/membuffer.h
dbitemquery.o: dbitemquery.h ../../winix/core/item.h dbconn.o: ../../../pikotools/textstream/types.h
dbtextstream.o: dbtextstream.h ../../winix/core/textstream.h dbconn.o: ../../../pikotools/utf8/utf8.h
dbtextstream.o: ../../winix/core/misc.h ../../winix/core/item.h dbconn.o: ../../../winix/winixd/core/winix_const.h
dbtextstream.o: ../../pikotools/space/space.h dbconn.o: ../../../winix/winixd/core/log.h ../../../winix/winixd/core/error.h
dbtextstream.o: ../../pikotools/textstream/types.h dbitemcolumns.o: dbitemcolumns.h ../../../winix/winixd/core/item.h dbbase.h
dbtextstream.o: ../../pikotools/date/date.h ../../winix/core/requesttypes.h dbitemcolumns.o: dbconn.h dbtextstream.h
dbtextstream.o: ../../pikotools/textstream/textstream.h dbitemcolumns.o: ../../../winix/winixd/core/textstream.h
dbtextstream.o: ../../pikotools/convert/convert.h dbitemcolumns.o: ../../../winix/winixd/core/misc.h
dbtextstream.o: ../../pikotools/convert/inttostr.h dbitemcolumns.o: ../../../winix/winixd/core/item.h
dbtextstream.o: ../../pikotools/membuffer/membuffer.h dbitemcolumns.o: ../../../pikotools/space/space.h
dbtextstream.o: ../../pikotools/textstream/types.h dbitemcolumns.o: ../../../pikotools/textstream/types.h
dbtextstream.o: ../../pikotools/utf8/utf8.h ../../winix/core/winix_const.h dbitemcolumns.o: ../../../pikotools/date/date.h
dbitemcolumns.o: ../../../winix/winixd/core/requesttypes.h
dbitemcolumns.o: ../../../pikotools/textstream/textstream.h
dbitemcolumns.o: ../../../pikotools/convert/convert.h
dbitemcolumns.o: ../../../pikotools/convert/inttostr.h
dbitemcolumns.o: ../../../pikotools/membuffer/membuffer.h
dbitemcolumns.o: ../../../pikotools/textstream/types.h
dbitemcolumns.o: ../../../pikotools/utf8/utf8.h
dbitemcolumns.o: ../../../winix/winixd/core/winix_const.h
dbitemcolumns.o: ../../../winix/winixd/core/error.h
dbitemcolumns.o: ../../../pikotools/space/spaceparser.h
dbitemcolumns.o: ../../../pikotools/space/space.h
dbitemcolumns.o: ../../../winix/winixd/core/log.h
dbitemquery.o: dbitemquery.h ../../../winix/winixd/core/item.h
dbtextstream.o: dbtextstream.h ../../../winix/winixd/core/textstream.h
dbtextstream.o: ../../../winix/winixd/core/misc.h
dbtextstream.o: ../../../winix/winixd/core/item.h
dbtextstream.o: ../../../pikotools/space/space.h
dbtextstream.o: ../../../pikotools/textstream/types.h
dbtextstream.o: ../../../pikotools/date/date.h
dbtextstream.o: ../../../winix/winixd/core/requesttypes.h
dbtextstream.o: ../../../pikotools/textstream/textstream.h
dbtextstream.o: ../../../pikotools/convert/convert.h
dbtextstream.o: ../../../pikotools/convert/inttostr.h
dbtextstream.o: ../../../pikotools/membuffer/membuffer.h
dbtextstream.o: ../../../pikotools/textstream/types.h
dbtextstream.o: ../../../pikotools/utf8/utf8.h
dbtextstream.o: ../../../winix/winixd/core/winix_const.h

View File

@ -1,15 +1,20 @@
include Makefile.o.dep include Makefile.o.dep
current_path := $(shell pwd)
global_relative_working_dir := $(shell relative_path $(current_path) $(GLOBAL_WORKING_DIR))
winix_include_paths = -I$(global_relative_working_dir)/winix/winixd -I$(global_relative_working_dir)/ezc/src -I$(global_relative_working_dir)/tito/src -I$(global_relative_working_dir)/pikotools
all: $(o) all: $(o)
%.o: %.cpp %.o: %.cpp
$(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< $(CXX) -c $(CXXFLAGS) $(winix_include_paths) $<
depend: depend:
makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep makedepend -Y. $(winix_include_paths) -f- *.cpp > Makefile.dep
echo -n "o = " > Makefile.o.dep echo -n "o = " > Makefile.o.dep
ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep

File diff suppressed because it is too large Load Diff

View File

@ -1,15 +1,20 @@
include Makefile.o.dep include Makefile.o.dep
current_path := $(shell pwd)
global_relative_working_dir := $(shell relative_path $(current_path) $(GLOBAL_WORKING_DIR))
winix_include_paths = -I$(global_relative_working_dir)/winix/winixd -I$(global_relative_working_dir)/ezc/src -I$(global_relative_working_dir)/tito/src -I$(global_relative_working_dir)/pikotools
all: $(o) all: $(o)
%.o: %.cpp %.o: %.cpp
$(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< $(CXX) -c $(CXXFLAGS) $(winix_include_paths) $<
depend: depend:
makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep makedepend -Y. $(winix_include_paths) -f- *.cpp > Makefile.dep
echo -n "o = " > Makefile.o.dep echo -n "o = " > Makefile.o.dep
ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep

View File

@ -1,88 +1,147 @@
# DO NOT DELETE # DO NOT DELETE
main.o: ../../winix/core/log.h ../../winix/core/textstream.h main.o: ../../../winix/winixd/core/log.h
main.o: ../../winix/core/misc.h ../../winix/core/item.h main.o: ../../../winix/winixd/core/textstream.h
main.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h main.o: ../../../winix/winixd/core/misc.h ../../../winix/winixd/core/item.h
main.o: ../../pikotools/date/date.h ../../winix/core/requesttypes.h main.o: ../../../pikotools/space/space.h
main.o: ../../pikotools/textstream/textstream.h main.o: ../../../pikotools/textstream/types.h ../../../pikotools/date/date.h
main.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h main.o: ../../../winix/winixd/core/requesttypes.h
main.o: ../../pikotools/membuffer/membuffer.h main.o: ../../../pikotools/textstream/textstream.h
main.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h main.o: ../../../pikotools/convert/convert.h
main.o: ../../winix/core/winix_const.h ../../winix/core/logmanipulators.h main.o: ../../../pikotools/convert/inttostr.h
main.o: ../../winix/core/slog.h ../../winix/core/cur.h main.o: ../../../pikotools/membuffer/membuffer.h
main.o: ../../winix/core/request.h ../../winix/core/error.h main.o: ../../../pikotools/textstream/types.h ../../../pikotools/utf8/utf8.h
main.o: ../../winix/core/config.h ../../pikotools/space/spaceparser.h main.o: ../../../winix/winixd/core/winix_const.h
main.o: ../../pikotools/space/space.h ../../winix/core/htmlfilter.h main.o: ../../../winix/winixd/core/logmanipulators.h
main.o: ../../winix/templates/htmltextstream.h ../../winix/core/textstream.h main.o: ../../../winix/winixd/core/slog.h ../../../winix/winixd/core/cur.h
main.o: ../../pikotools/space/spacetojson.h ../../ezc/src/outstreams.h main.o: ../../../winix/winixd/core/request.h
main.o: ../../winix/core/session.h ../../winix/core/user.h main.o: ../../../winix/winixd/core/error.h
main.o: ../../winix/core/plugindata.h ../../winix/core/rebus.h main.o: ../../../winix/winixd/core/config.h
main.o: ../../winix/core/ipban.h ../../winix/core/mount.h main.o: ../../../pikotools/space/spaceparser.h
main.o: ../../winix/templates/locale.h ../../winix/core/slog.h main.o: ../../../pikotools/space/space.h
main.o: ../../winix/core/app.h ../../winix/core/system.h main.o: ../../../winix/winixd/core/htmlfilter.h
main.o: ../../winix/core/job.h ../../winix/core/basethread.h main.o: ../../../winix/winixd/templates/htmltextstream.h
main.o: ../../winix/core/synchro.h ../../winix/core/dirs.h main.o: ../../../winix/winixd/core/textstream.h
main.o: ../../winix/core/dircontainer.h ../../winix/db/db.h main.o: ../../../pikotools/space/spacetojson.h ../../../ezc/src/outstreams.h
main.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h main.o: ../../../winix/winixd/core/session.h
main.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h main.o: ../../../winix/winixd/core/user.h
main.o: ../../winix/db/dbitemquery.h ../../winix/core/item.h main.o: ../../../winix/winixd/core/plugindata.h
main.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h main.o: ../../../winix/winixd/core/rebus.h ../../../winix/winixd/core/ipban.h
main.o: ../../winix/core/group.h ../../winix/core/dircontainer.h main.o: ../../../winix/winixd/core/mount.h
main.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h main.o: ../../../winix/winixd/templates/locale.h
main.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h main.o: ../../../winix/winixd/core/slog.h ../../../winix/winixd/core/app.h
main.o: ../../winix/templates/patterns.h ../../winix/templates/locale.h main.o: ../../../winix/winixd/core/system.h ../../../winix/winixd/core/job.h
main.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h main.o: ../../../winix/winixd/core/basethread.h
main.o: ../../ezc/src/generator.h ../../ezc/src/blocks.h main.o: ../../../winix/winixd/core/synchro.h
main.o: ../../ezc/src/cache.h ../../ezc/src/functions.h main.o: ../../../winix/winixd/core/dirs.h
main.o: ../../ezc/src/funinfo.h ../../ezc/src/objects.h main.o: ../../../winix/winixd/core/dircontainer.h
main.o: ../../ezc/src/pattern.h ../../ezc/src/patternparser.h main.o: ../../../winix/winixd/db/db.h ../../../winix/winixd/db/dbbase.h
main.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h main.o: ../../../winix/winixd/db/dbconn.h
main.o: ../../winix/notify/templatesnotify.h ../../winix/core/config.h main.o: ../../../winix/winixd/db/dbtextstream.h
main.o: ../../winix/core/users.h ../../winix/core/ugcontainer.h main.o: ../../../winix/winixd/core/error.h
main.o: ../../winix/core/lastcontainer.h ../../winix/core/mounts.h main.o: ../../../winix/winixd/db/dbitemquery.h
main.o: ../../winix/core/mountparser.h ../../winix/core/crypt.h main.o: ../../../winix/winixd/core/item.h
main.o: ../../winix/core/run.h ../../winix/core/users.h main.o: ../../../winix/winixd/db/dbitemcolumns.h
main.o: ../../winix/core/groups.h ../../winix/core/group.h main.o: ../../../winix/winixd/core/user.h ../../../winix/winixd/core/group.h
main.o: ../../winix/core/loadavg.h ../../winix/core/image.h main.o: ../../../winix/winixd/core/dircontainer.h
main.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h main.o: ../../../winix/winixd/core/ugcontainer.h
main.o: ../../winix/core/timezone.h ../../winix/core/sessionmanager.h main.o: ../../../winix/winixd/core/log.h
main.o: ../../winix/core/sessioncontainer.h ../../winix/core/ipbancontainer.h main.o: ../../../winix/winixd/notify/notify.h
main.o: ../../winix/core/sessionidmanager.h ../../tito/src/base64.h main.o: ../../../winix/winixd/notify/notifypool.h
main.o: ../../tito/src/aes.h ../../winix/functions/functions.h main.o: ../../../winix/winixd/templates/patterns.h
main.o: ../../winix/functions/functionbase.h ../../winix/core/request.h main.o: ../../../winix/winixd/templates/locale.h
main.o: ../../winix/core/system.h ../../winix/core/synchro.h main.o: ../../../winix/winixd/templates/localefilter.h ../../../ezc/src/ezc.h
main.o: ../../winix/functions/functionparser.h ../../winix/core/cur.h main.o: ../../../ezc/src/generator.h ../../../ezc/src/blocks.h
main.o: ../../winix/functions/account.h ../../winix/functions/adduser.h main.o: ../../../ezc/src/cache.h ../../../ezc/src/functions.h
main.o: ../../winix/functions/cat.h ../../winix/functions/chmod.h main.o: ../../../ezc/src/funinfo.h ../../../ezc/src/objects.h
main.o: ../../winix/functions/privchanger.h ../../winix/functions/chown.h main.o: ../../../ezc/src/pattern.h ../../../ezc/src/patternparser.h
main.o: ../../winix/functions/ckeditor.h ../../winix/functions/cp.h main.o: ../../../winix/winixd/notify/notifythread.h
main.o: ../../winix/functions/default.h ../../winix/functions/download.h main.o: ../../../winix/winixd/core/basethread.h
main.o: ../../winix/functions/emacs.h ../../winix/functions/env.h main.o: ../../../winix/winixd/notify/templatesnotify.h
main.o: ../../winix/functions/imgcrop.h ../../winix/functions/last.h main.o: ../../../winix/winixd/core/config.h
main.o: ../../winix/functions/login.h ../../winix/functions/logout.h main.o: ../../../winix/winixd/core/users.h
main.o: ../../winix/functions/ln.h ../../winix/functions/ls.h main.o: ../../../winix/winixd/core/ugcontainer.h
main.o: ../../winix/functions/man.h ../../winix/functions/meta.h main.o: ../../../winix/winixd/core/lastcontainer.h
main.o: ../../winix/functions/mkdir.h ../../winix/functions/mv.h main.o: ../../../winix/winixd/core/mounts.h
main.o: ../../winix/functions/nicedit.h ../../winix/functions/node.h main.o: ../../../winix/winixd/core/mountparser.h
main.o: ../../winix/functions/passwd.h ../../winix/functions/priv.h main.o: ../../../winix/winixd/core/crypt.h ../../../winix/winixd/core/run.h
main.o: ../../winix/functions/pw.h ../../winix/functions/reload.h main.o: ../../../winix/winixd/core/users.h
main.o: ../../winix/functions/rm.h ../../winix/functions/rmuser.h main.o: ../../../winix/winixd/core/groups.h
main.o: ../../winix/functions/sort.h ../../winix/functions/specialdefault.h main.o: ../../../winix/winixd/core/group.h
main.o: ../../winix/functions/stat.h ../../winix/functions/subject.h main.o: ../../../winix/winixd/core/loadavg.h
main.o: ../../winix/functions/template.h ../../winix/functions/tinymce.h main.o: ../../../winix/winixd/core/image.h
main.o: ../../winix/functions/uname.h ../../winix/functions/upload.h main.o: ../../../winix/winixd/core/threadmanager.h
main.o: ../../winix/functions/uptime.h ../../winix/functions/who.h main.o: ../../../winix/winixd/core/timezones.h
main.o: ../../winix/functions/vim.h ../../winix/core/htmlfilter.h main.o: ../../../winix/winixd/core/timezone.h
main.o: ../../winix/templates/templates.h main.o: ../../../winix/winixd/core/sessionmanager.h
main.o: ../../winix/templates/patterncacher.h main.o: ../../../winix/winixd/core/sessioncontainer.h
main.o: ../../winix/templates/indexpatterns.h main.o: ../../../winix/winixd/core/ipbancontainer.h
main.o: ../../winix/templates/patterns.h main.o: ../../../winix/winixd/core/sessionidmanager.h
main.o: ../../winix/templates/changepatterns.h main.o: ../../../tito/src/base64.h ../../../tito/src/aes.h
main.o: ../../winix/templates/htmltextstream.h main.o: ../../../winix/winixd/functions/functions.h
main.o: ../../winix/core/sessionmanager.h ../../winix/core/compress.h main.o: ../../../winix/winixd/functions/functionbase.h
main.o: ../../winix/core/postparser.h ../../winix/core/httpsimpleparser.h main.o: ../../../winix/winixd/core/request.h
main.o: ../../winix/core/plugin.h ../../winix/core/pluginmsg.h main.o: ../../../winix/winixd/core/system.h
main.o: ../../winix/core/cookieparser.h ../../winix/core/postmultiparser.h main.o: ../../../winix/winixd/core/synchro.h
main.o: ../../winix/core/acceptencodingparser.h main.o: ../../../winix/winixd/functions/functionparser.h
main.o: ../../winix/core/acceptbaseparser.h ../../winix/core/plugin.h main.o: ../../../winix/winixd/core/cur.h
main.o: ../../winix/core/version.h main.o: ../../../winix/winixd/functions/account.h
main.o: ../../../winix/winixd/functions/adduser.h
main.o: ../../../winix/winixd/functions/cat.h
main.o: ../../../winix/winixd/functions/chmod.h
main.o: ../../../winix/winixd/functions/privchanger.h
main.o: ../../../winix/winixd/functions/chown.h
main.o: ../../../winix/winixd/functions/ckeditor.h
main.o: ../../../winix/winixd/functions/cp.h
main.o: ../../../winix/winixd/functions/default.h
main.o: ../../../winix/winixd/functions/download.h
main.o: ../../../winix/winixd/functions/emacs.h
main.o: ../../../winix/winixd/functions/env.h
main.o: ../../../winix/winixd/functions/imgcrop.h
main.o: ../../../winix/winixd/functions/last.h
main.o: ../../../winix/winixd/functions/login.h
main.o: ../../../winix/winixd/functions/logout.h
main.o: ../../../winix/winixd/functions/ln.h
main.o: ../../../winix/winixd/functions/ls.h
main.o: ../../../winix/winixd/functions/man.h
main.o: ../../../winix/winixd/functions/meta.h
main.o: ../../../winix/winixd/functions/mkdir.h
main.o: ../../../winix/winixd/functions/mv.h
main.o: ../../../winix/winixd/functions/nicedit.h
main.o: ../../../winix/winixd/functions/node.h
main.o: ../../../winix/winixd/functions/passwd.h
main.o: ../../../winix/winixd/functions/priv.h
main.o: ../../../winix/winixd/functions/pw.h
main.o: ../../../winix/winixd/functions/reload.h
main.o: ../../../winix/winixd/functions/rm.h
main.o: ../../../winix/winixd/functions/rmuser.h
main.o: ../../../winix/winixd/functions/sort.h
main.o: ../../../winix/winixd/functions/specialdefault.h
main.o: ../../../winix/winixd/functions/stat.h
main.o: ../../../winix/winixd/functions/subject.h
main.o: ../../../winix/winixd/functions/template.h
main.o: ../../../winix/winixd/functions/tinymce.h
main.o: ../../../winix/winixd/functions/uname.h
main.o: ../../../winix/winixd/functions/upload.h
main.o: ../../../winix/winixd/functions/uptime.h
main.o: ../../../winix/winixd/functions/who.h
main.o: ../../../winix/winixd/functions/vim.h
main.o: ../../../winix/winixd/core/htmlfilter.h
main.o: ../../../winix/winixd/templates/templates.h
main.o: ../../../winix/winixd/templates/patterncacher.h
main.o: ../../../winix/winixd/templates/indexpatterns.h
main.o: ../../../winix/winixd/templates/patterns.h
main.o: ../../../winix/winixd/templates/changepatterns.h
main.o: ../../../winix/winixd/templates/htmltextstream.h
main.o: ../../../winix/winixd/core/sessionmanager.h
main.o: ../../../winix/winixd/core/compress.h
main.o: ../../../winix/winixd/core/postparser.h
main.o: ../../../winix/winixd/core/httpsimpleparser.h
main.o: ../../../winix/winixd/core/plugin.h
main.o: ../../../winix/winixd/core/pluginmsg.h
main.o: ../../../winix/winixd/core/cookieparser.h
main.o: ../../../winix/winixd/core/postmultiparser.h
main.o: ../../../winix/winixd/core/acceptencodingparser.h
main.o: ../../../winix/winixd/core/acceptbaseparser.h
main.o: ../../../winix/winixd/core/plugin.h
main.o: ../../../winix/winixd/core/version.h

View File

@ -1,15 +1,20 @@
include Makefile.o.dep include Makefile.o.dep
current_path := $(shell pwd)
global_relative_working_dir := $(shell relative_path $(current_path) $(GLOBAL_WORKING_DIR))
winix_include_paths = -I$(global_relative_working_dir)/winix/winixd -I$(global_relative_working_dir)/ezc/src -I$(global_relative_working_dir)/tito/src -I$(global_relative_working_dir)/pikotools
all: $(o) all: $(o)
%.o: %.cpp %.o: %.cpp
$(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< $(CXX) -c $(CXXFLAGS) $(winix_include_paths) $<
depend: depend:
makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep makedepend -Y. $(winix_include_paths) -f- *.cpp > Makefile.dep
echo -n "o = " > Makefile.o.dep echo -n "o = " > Makefile.o.dep
ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep

View File

@ -1,234 +1,348 @@
# DO NOT DELETE # DO NOT DELETE
notify.o: notify.h notifypool.h ../../winix/templates/locale.h notify.o: notify.h notifypool.h ../../../winix/winixd/templates/locale.h
notify.o: ../../pikotools/space/spaceparser.h ../../pikotools/space/space.h notify.o: ../../../pikotools/space/spaceparser.h
notify.o: ../../pikotools/textstream/types.h notify.o: ../../../pikotools/space/space.h
notify.o: ../../pikotools/textstream/textstream.h notify.o: ../../../pikotools/textstream/types.h
notify.o: ../../pikotools/space/space.h ../../pikotools/date/date.h notify.o: ../../../pikotools/textstream/textstream.h
notify.o: ../../pikotools/convert/convert.h notify.o: ../../../pikotools/space/space.h ../../../pikotools/date/date.h
notify.o: ../../pikotools/convert/inttostr.h notify.o: ../../../pikotools/convert/convert.h
notify.o: ../../pikotools/membuffer/membuffer.h notify.o: ../../../pikotools/convert/inttostr.h
notify.o: ../../pikotools/textstream/types.h ../../winix/templates/patterns.h notify.o: ../../../pikotools/membuffer/membuffer.h
notify.o: ../../winix/templates/locale.h ../../winix/templates/localefilter.h notify.o: ../../../pikotools/textstream/types.h
notify.o: ../../ezc/src/ezc.h ../../ezc/src/generator.h notify.o: ../../../winix/winixd/templates/patterns.h
notify.o: ../../ezc/src/blocks.h ../../ezc/src/item.h ../../ezc/src/cache.h notify.o: ../../../winix/winixd/templates/locale.h
notify.o: ../../ezc/src/functions.h ../../pikotools/utf8/utf8.h notify.o: ../../../winix/winixd/templates/localefilter.h
notify.o: ../../ezc/src/funinfo.h ../../ezc/src/objects.h notify.o: ../../../ezc/src/ezc.h ../../../ezc/src/generator.h
notify.o: ../../ezc/src/pattern.h ../../ezc/src/outstreams.h notify.o: ../../../ezc/src/blocks.h ../../../ezc/src/item.h
notify.o: ../../ezc/src/patternparser.h ../../winix/templates/misc.h notify.o: ../../../ezc/src/cache.h ../../../ezc/src/functions.h
notify.o: ../../winix/templates/htmltextstream.h notify.o: ../../../pikotools/utf8/utf8.h ../../../ezc/src/funinfo.h
notify.o: ../../winix/core/textstream.h notifythread.h notify.o: ../../../ezc/src/objects.h ../../../ezc/src/pattern.h
notify.o: ../../winix/core/basethread.h ../../winix/core/synchro.h notify.o: ../../../ezc/src/outstreams.h ../../../ezc/src/patternparser.h
notify.o: templatesnotify.h ../../winix/core/config.h notify.o: ../../../winix/winixd/templates/misc.h
notify.o: ../../winix/core/htmlfilter.h ../../winix/core/users.h notify.o: ../../../winix/winixd/templates/htmltextstream.h
notify.o: ../../winix/core/user.h ../../winix/core/ugcontainer.h notify.o: ../../../winix/winixd/core/textstream.h notifythread.h
notify.o: ../../winix/core/log.h ../../winix/core/textstream.h notify.o: ../../../winix/winixd/core/basethread.h
notify.o: ../../winix/core/logmanipulators.h ../../winix/core/slog.h notify.o: ../../../winix/winixd/core/synchro.h templatesnotify.h
notify.o: ../../winix/core/cur.h ../../winix/core/request.h notify.o: ../../../winix/winixd/core/config.h
notify.o: ../../winix/core/requesttypes.h ../../winix/core/error.h notify.o: ../../../winix/winixd/core/htmlfilter.h
notify.o: ../../winix/core/config.h ../../winix/templates/htmltextstream.h notify.o: ../../../winix/winixd/core/users.h
notify.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h notify.o: ../../../winix/winixd/core/user.h
notify.o: ../../winix/core/plugindata.h ../../winix/core/rebus.h notify.o: ../../../winix/winixd/core/ugcontainer.h
notify.o: ../../winix/core/ipban.h ../../winix/core/mount.h notify.o: ../../../winix/winixd/core/log.h
notify.o: ../../winix/core/lastcontainer.h ../../winix/db/db.h notify.o: ../../../winix/winixd/core/textstream.h
notify.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h notify.o: ../../../winix/winixd/core/logmanipulators.h
notify.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h notify.o: ../../../winix/winixd/core/slog.h ../../../winix/winixd/core/cur.h
notify.o: ../../winix/db/dbitemquery.h ../../winix/core/item.h notify.o: ../../../winix/winixd/core/request.h
notify.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h notify.o: ../../../winix/winixd/core/requesttypes.h
notify.o: ../../winix/core/group.h ../../winix/core/dircontainer.h notify.o: ../../../winix/winixd/core/error.h
notify.o: ../../winix/core/ugcontainer.h ../../winix/templates/templates.h notify.o: ../../../winix/winixd/core/config.h
notify.o: ../../winix/templates/patterncacher.h notify.o: ../../../winix/winixd/templates/htmltextstream.h
notify.o: ../../winix/templates/indexpatterns.h notify.o: ../../../pikotools/space/spacetojson.h
notify.o: ../../winix/templates/patterns.h notify.o: ../../../winix/winixd/core/session.h
notify.o: ../../winix/templates/changepatterns.h ../../winix/core/cur.h notify.o: ../../../winix/winixd/core/plugindata.h
notify.o: ../../winix/core/system.h ../../winix/core/job.h notify.o: ../../../winix/winixd/core/rebus.h
notify.o: ../../winix/core/basethread.h ../../winix/core/dirs.h notify.o: ../../../winix/winixd/core/ipban.h
notify.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h notify.o: ../../../winix/winixd/core/mount.h
notify.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h notify.o: ../../../winix/winixd/core/lastcontainer.h
notify.o: ../../winix/core/crypt.h ../../winix/core/run.h notify.o: ../../../winix/winixd/db/db.h ../../../winix/winixd/db/dbbase.h
notify.o: ../../winix/core/users.h ../../winix/core/groups.h notify.o: ../../../winix/winixd/db/dbconn.h
notify.o: ../../winix/core/group.h ../../winix/core/loadavg.h notify.o: ../../../winix/winixd/db/dbtextstream.h
notify.o: ../../winix/core/image.h ../../winix/core/threadmanager.h notify.o: ../../../winix/winixd/core/error.h
notify.o: ../../winix/core/timezones.h ../../winix/core/timezone.h notify.o: ../../../winix/winixd/db/dbitemquery.h
notify.o: ../../winix/core/sessionmanager.h notify.o: ../../../winix/winixd/core/item.h
notify.o: ../../winix/core/sessioncontainer.h notify.o: ../../../winix/winixd/db/dbitemcolumns.h
notify.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h notify.o: ../../../winix/winixd/core/user.h
notify.o: ../../winix/core/sessionidmanager.h ../../tito/src/base64.h notify.o: ../../../winix/winixd/core/group.h
notify.o: ../../tito/src/aes.h ../../winix/core/htmlfilter.h notify.o: ../../../winix/winixd/core/dircontainer.h
notify.o: ../../winix/core/request.h ../../winix/core/dirs.h notify.o: ../../../winix/winixd/core/ugcontainer.h
notify.o: ../../winix/core/plugin.h ../../winix/core/pluginmsg.h notify.o: ../../../winix/winixd/templates/templates.h
notify.o: ../../winix/core/sessionmanager.h ../../winix/functions/functions.h notify.o: ../../../winix/winixd/templates/patterncacher.h
notify.o: ../../winix/functions/functionbase.h ../../winix/core/synchro.h notify.o: ../../../winix/winixd/templates/indexpatterns.h
notify.o: ../../winix/functions/functionparser.h notify.o: ../../../winix/winixd/templates/patterns.h
notify.o: ../../winix/functions/account.h ../../winix/functions/adduser.h notify.o: ../../../winix/winixd/templates/changepatterns.h
notify.o: ../../winix/functions/cat.h ../../winix/functions/chmod.h notify.o: ../../../winix/winixd/core/cur.h
notify.o: ../../winix/functions/privchanger.h ../../winix/functions/chown.h notify.o: ../../../winix/winixd/core/system.h
notify.o: ../../winix/functions/ckeditor.h ../../winix/functions/cp.h notify.o: ../../../winix/winixd/core/job.h
notify.o: ../../winix/functions/default.h ../../winix/functions/download.h notify.o: ../../../winix/winixd/core/basethread.h
notify.o: ../../winix/functions/emacs.h ../../winix/functions/env.h notify.o: ../../../winix/winixd/core/dirs.h
notify.o: ../../winix/functions/imgcrop.h ../../winix/functions/last.h notify.o: ../../../winix/winixd/core/dircontainer.h
notify.o: ../../winix/functions/login.h ../../winix/functions/logout.h notify.o: ../../../winix/winixd/notify/notify.h
notify.o: ../../winix/functions/ln.h ../../winix/functions/ls.h notify.o: ../../../winix/winixd/core/mounts.h
notify.o: ../../winix/functions/man.h ../../winix/functions/meta.h notify.o: ../../../winix/winixd/core/mountparser.h
notify.o: ../../winix/functions/mkdir.h ../../winix/functions/mv.h notify.o: ../../../winix/winixd/core/crypt.h ../../../winix/winixd/core/run.h
notify.o: ../../winix/functions/nicedit.h ../../winix/functions/node.h notify.o: ../../../winix/winixd/core/users.h
notify.o: ../../winix/functions/passwd.h ../../winix/functions/priv.h notify.o: ../../../winix/winixd/core/groups.h
notify.o: ../../winix/functions/pw.h ../../winix/functions/reload.h notify.o: ../../../winix/winixd/core/group.h
notify.o: ../../winix/functions/rm.h ../../winix/functions/rmuser.h notify.o: ../../../winix/winixd/core/loadavg.h
notify.o: ../../winix/functions/sort.h ../../winix/functions/specialdefault.h notify.o: ../../../winix/winixd/core/image.h
notify.o: ../../winix/functions/stat.h ../../winix/functions/subject.h notify.o: ../../../winix/winixd/core/threadmanager.h
notify.o: ../../winix/functions/template.h ../../winix/functions/tinymce.h notify.o: ../../../winix/winixd/core/timezones.h
notify.o: ../../winix/functions/uname.h ../../winix/functions/upload.h notify.o: ../../../winix/winixd/core/timezone.h
notify.o: ../../winix/functions/uptime.h ../../winix/functions/who.h notify.o: ../../../winix/winixd/core/sessionmanager.h
notify.o: ../../winix/functions/vim.h notify.o: ../../../winix/winixd/core/sessioncontainer.h
notifypool.o: notifypool.h ../../winix/templates/locale.h notify.o: ../../../winix/winixd/core/ipbancontainer.h
notifypool.o: ../../pikotools/space/spaceparser.h notify.o: ../../../winix/winixd/core/system.h
notifypool.o: ../../pikotools/space/space.h notify.o: ../../../winix/winixd/core/sessionidmanager.h
notifypool.o: ../../pikotools/textstream/types.h notify.o: ../../../tito/src/base64.h ../../../tito/src/aes.h
notifypool.o: ../../pikotools/textstream/textstream.h notify.o: ../../../winix/winixd/core/htmlfilter.h
notifypool.o: ../../pikotools/space/space.h ../../pikotools/date/date.h notify.o: ../../../winix/winixd/core/request.h
notifypool.o: ../../pikotools/convert/convert.h notify.o: ../../../winix/winixd/core/dirs.h
notifypool.o: ../../pikotools/convert/inttostr.h notify.o: ../../../winix/winixd/core/plugin.h
notifypool.o: ../../pikotools/membuffer/membuffer.h notify.o: ../../../winix/winixd/core/pluginmsg.h
notifypool.o: ../../pikotools/textstream/types.h notify.o: ../../../winix/winixd/core/sessionmanager.h
notifythread.o: notifythread.h ../../winix/core/basethread.h notify.o: ../../../winix/winixd/functions/functions.h
notifythread.o: ../../winix/core/synchro.h templatesnotify.h notify.o: ../../../winix/winixd/functions/functionbase.h
notifythread.o: ../../ezc/src/ezc.h ../../ezc/src/generator.h notify.o: ../../../winix/winixd/core/synchro.h
notifythread.o: ../../ezc/src/blocks.h ../../ezc/src/item.h notify.o: ../../../winix/winixd/functions/functionparser.h
notifythread.o: ../../ezc/src/cache.h ../../ezc/src/functions.h notify.o: ../../../winix/winixd/functions/account.h
notifythread.o: ../../pikotools/utf8/utf8.h ../../ezc/src/funinfo.h notify.o: ../../../winix/winixd/functions/adduser.h
notifythread.o: ../../ezc/src/objects.h ../../ezc/src/pattern.h notify.o: ../../../winix/winixd/functions/cat.h
notifythread.o: ../../ezc/src/outstreams.h ../../ezc/src/patternparser.h notify.o: ../../../winix/winixd/functions/chmod.h
notifythread.o: ../../winix/core/textstream.h ../../winix/templates/misc.h notify.o: ../../../winix/winixd/functions/privchanger.h
notifythread.o: ../../winix/templates/localefilter.h notify.o: ../../../winix/winixd/functions/chown.h
notifythread.o: ../../winix/templates/locale.h notify.o: ../../../winix/winixd/functions/ckeditor.h
notifythread.o: ../../winix/templates/htmltextstream.h notify.o: ../../../winix/winixd/functions/cp.h
notifythread.o: ../../pikotools/space/space.h ../../pikotools/date/date.h notify.o: ../../../winix/winixd/functions/default.h
notifythread.o: ../../pikotools/textstream/textstream.h notify.o: ../../../winix/winixd/functions/download.h
notifythread.o: ../../pikotools/convert/convert.h notify.o: ../../../winix/winixd/functions/emacs.h
notifythread.o: ../../pikotools/convert/inttostr.h notify.o: ../../../winix/winixd/functions/env.h
notifythread.o: ../../pikotools/membuffer/membuffer.h notify.o: ../../../winix/winixd/functions/imgcrop.h
notifythread.o: ../../pikotools/textstream/types.h notifypool.h notify.o: ../../../winix/winixd/functions/last.h
notifythread.o: ../../winix/templates/locale.h notify.o: ../../../winix/winixd/functions/login.h
notifythread.o: ../../pikotools/space/spaceparser.h notify.o: ../../../winix/winixd/functions/logout.h
notifythread.o: ../../pikotools/space/space.h notify.o: ../../../winix/winixd/functions/ln.h
notifythread.o: ../../pikotools/textstream/types.h ../../winix/core/config.h notify.o: ../../../winix/winixd/functions/ls.h
notifythread.o: ../../winix/core/htmlfilter.h ../../winix/core/users.h notify.o: ../../../winix/winixd/functions/man.h
notifythread.o: ../../winix/core/user.h ../../winix/core/ugcontainer.h notify.o: ../../../winix/winixd/functions/meta.h
notifythread.o: ../../winix/core/log.h ../../winix/core/textstream.h notify.o: ../../../winix/winixd/functions/mkdir.h
notifythread.o: ../../winix/core/logmanipulators.h ../../winix/core/slog.h notify.o: ../../../winix/winixd/functions/mv.h
notifythread.o: ../../winix/core/cur.h ../../winix/core/request.h notify.o: ../../../winix/winixd/functions/nicedit.h
notifythread.o: ../../winix/core/requesttypes.h ../../winix/core/error.h notify.o: ../../../winix/winixd/functions/node.h
notifythread.o: ../../winix/core/config.h notify.o: ../../../winix/winixd/functions/passwd.h
notifythread.o: ../../winix/templates/htmltextstream.h notify.o: ../../../winix/winixd/functions/priv.h
notifythread.o: ../../pikotools/space/spacetojson.h notify.o: ../../../winix/winixd/functions/pw.h
notifythread.o: ../../winix/core/session.h ../../winix/core/plugindata.h notify.o: ../../../winix/winixd/functions/reload.h
notifythread.o: ../../winix/core/rebus.h ../../winix/core/ipban.h notify.o: ../../../winix/winixd/functions/rm.h
notifythread.o: ../../winix/core/mount.h ../../winix/core/lastcontainer.h notify.o: ../../../winix/winixd/functions/rmuser.h
notifythread.o: ../../winix/db/db.h ../../winix/db/dbbase.h notify.o: ../../../winix/winixd/functions/sort.h
notifythread.o: ../../winix/db/dbconn.h ../../winix/db/dbtextstream.h notify.o: ../../../winix/winixd/functions/specialdefault.h
notifythread.o: ../../winix/core/error.h ../../winix/db/dbitemquery.h notify.o: ../../../winix/winixd/functions/stat.h
notifythread.o: ../../winix/core/item.h ../../winix/db/dbitemcolumns.h notify.o: ../../../winix/winixd/functions/subject.h
notifythread.o: ../../winix/core/user.h ../../winix/core/group.h notify.o: ../../../winix/winixd/functions/template.h
notifythread.o: ../../winix/core/dircontainer.h notify.o: ../../../winix/winixd/functions/tinymce.h
notifythread.o: ../../winix/core/ugcontainer.h notify.o: ../../../winix/winixd/functions/uname.h
notifythread.o: ../../winix/templates/patterns.h notify.o: ../../../winix/winixd/functions/upload.h
templatesnotify.o: templatesnotify.h ../../ezc/src/ezc.h notify.o: ../../../winix/winixd/functions/uptime.h
templatesnotify.o: ../../ezc/src/generator.h ../../ezc/src/blocks.h notify.o: ../../../winix/winixd/functions/who.h
templatesnotify.o: ../../ezc/src/item.h ../../ezc/src/cache.h notify.o: ../../../winix/winixd/functions/vim.h
templatesnotify.o: ../../ezc/src/functions.h ../../pikotools/utf8/utf8.h notifypool.o: notifypool.h ../../../winix/winixd/templates/locale.h
templatesnotify.o: ../../ezc/src/funinfo.h ../../ezc/src/objects.h notifypool.o: ../../../pikotools/space/spaceparser.h
templatesnotify.o: ../../ezc/src/pattern.h ../../ezc/src/outstreams.h notifypool.o: ../../../pikotools/space/space.h
templatesnotify.o: ../../ezc/src/patternparser.h notifypool.o: ../../../pikotools/textstream/types.h
templatesnotify.o: ../../winix/core/textstream.h ../../winix/templates/misc.h notifypool.o: ../../../pikotools/textstream/textstream.h
templatesnotify.o: ../../winix/templates/localefilter.h notifypool.o: ../../../pikotools/space/space.h ../../../pikotools/date/date.h
templatesnotify.o: ../../winix/templates/locale.h notifypool.o: ../../../pikotools/convert/convert.h
templatesnotify.o: ../../winix/templates/htmltextstream.h notifypool.o: ../../../pikotools/convert/inttostr.h
templatesnotify.o: ../../pikotools/space/space.h ../../pikotools/date/date.h notifypool.o: ../../../pikotools/membuffer/membuffer.h
templatesnotify.o: ../../pikotools/textstream/textstream.h notifypool.o: ../../../pikotools/textstream/types.h
templatesnotify.o: ../../pikotools/convert/convert.h notifythread.o: notifythread.h ../../../winix/winixd/core/basethread.h
templatesnotify.o: ../../pikotools/convert/inttostr.h notifythread.o: ../../../winix/winixd/core/synchro.h templatesnotify.h
templatesnotify.o: ../../pikotools/membuffer/membuffer.h notifythread.o: ../../../ezc/src/ezc.h ../../../ezc/src/generator.h
templatesnotify.o: ../../pikotools/textstream/types.h notifypool.h notifythread.o: ../../../ezc/src/blocks.h ../../../ezc/src/item.h
templatesnotify.o: ../../winix/templates/locale.h notifythread.o: ../../../ezc/src/cache.h ../../../ezc/src/functions.h
templatesnotify.o: ../../pikotools/space/spaceparser.h notifythread.o: ../../../pikotools/utf8/utf8.h ../../../ezc/src/funinfo.h
templatesnotify.o: ../../pikotools/space/space.h notifythread.o: ../../../ezc/src/objects.h ../../../ezc/src/pattern.h
templatesnotify.o: ../../pikotools/textstream/types.h notifythread.o: ../../../ezc/src/outstreams.h
templatesnotify.o: ../../winix/core/plugin.h ../../winix/core/pluginmsg.h notifythread.o: ../../../ezc/src/patternparser.h
templatesnotify.o: ../../winix/core/log.h ../../winix/core/textstream.h notifythread.o: ../../../winix/winixd/core/textstream.h
templatesnotify.o: ../../winix/core/logmanipulators.h ../../winix/core/slog.h notifythread.o: ../../../winix/winixd/templates/misc.h
templatesnotify.o: ../../winix/core/cur.h ../../winix/core/request.h notifythread.o: ../../../winix/winixd/templates/localefilter.h
templatesnotify.o: ../../winix/core/requesttypes.h ../../winix/core/error.h notifythread.o: ../../../winix/winixd/templates/locale.h
templatesnotify.o: ../../winix/core/config.h notifythread.o: ../../../winix/winixd/templates/htmltextstream.h
templatesnotify.o: ../../winix/templates/htmltextstream.h notifythread.o: ../../../pikotools/space/space.h
templatesnotify.o: ../../pikotools/space/spacetojson.h notifythread.o: ../../../pikotools/date/date.h
templatesnotify.o: ../../winix/core/session.h ../../winix/core/user.h notifythread.o: ../../../pikotools/textstream/textstream.h
templatesnotify.o: ../../winix/core/plugindata.h ../../winix/core/rebus.h notifythread.o: ../../../pikotools/convert/convert.h
templatesnotify.o: ../../winix/core/ipban.h ../../winix/core/mount.h notifythread.o: ../../../pikotools/convert/inttostr.h
templatesnotify.o: ../../winix/core/system.h notifythread.o: ../../../pikotools/membuffer/membuffer.h
templatesnotify.o: ../../winix/core/sessionmanager.h notifythread.o: ../../../pikotools/textstream/types.h notifypool.h
templatesnotify.o: ../../winix/core/synchro.h notifythread.o: ../../../winix/winixd/templates/locale.h
templatesnotify.o: ../../winix/functions/functions.h notifythread.o: ../../../pikotools/space/spaceparser.h
templatesnotify.o: ../../winix/functions/functionbase.h notifythread.o: ../../../pikotools/space/space.h
templatesnotify.o: ../../winix/core/item.h ../../winix/db/db.h notifythread.o: ../../../pikotools/textstream/types.h
templatesnotify.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h notifythread.o: ../../../winix/winixd/core/config.h
templatesnotify.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h notifythread.o: ../../../winix/winixd/core/htmlfilter.h
templatesnotify.o: ../../winix/db/dbitemquery.h notifythread.o: ../../../winix/winixd/core/users.h
templatesnotify.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h notifythread.o: ../../../winix/winixd/core/user.h
templatesnotify.o: ../../winix/core/group.h ../../winix/core/dircontainer.h notifythread.o: ../../../winix/winixd/core/ugcontainer.h
templatesnotify.o: ../../winix/core/ugcontainer.h ../../winix/core/request.h notifythread.o: ../../../winix/winixd/core/log.h
templatesnotify.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h notifythread.o: ../../../winix/winixd/core/textstream.h
templatesnotify.o: ../../winix/core/system.h ../../winix/core/job.h notifythread.o: ../../../winix/winixd/core/logmanipulators.h
templatesnotify.o: ../../winix/core/basethread.h ../../winix/core/dirs.h notifythread.o: ../../../winix/winixd/core/slog.h
templatesnotify.o: ../../winix/core/dircontainer.h notifythread.o: ../../../winix/winixd/core/cur.h
templatesnotify.o: ../../winix/notify/notify.h ../../winix/core/mounts.h notifythread.o: ../../../winix/winixd/core/request.h
templatesnotify.o: ../../winix/core/mountparser.h ../../winix/core/crypt.h notifythread.o: ../../../winix/winixd/core/requesttypes.h
templatesnotify.o: ../../winix/core/run.h ../../winix/core/users.h notifythread.o: ../../../winix/winixd/core/error.h
templatesnotify.o: ../../winix/core/groups.h ../../winix/core/group.h notifythread.o: ../../../winix/winixd/core/config.h
templatesnotify.o: ../../winix/core/ugcontainer.h ../../winix/core/loadavg.h notifythread.o: ../../../winix/winixd/templates/htmltextstream.h
templatesnotify.o: ../../winix/core/image.h ../../winix/core/threadmanager.h notifythread.o: ../../../pikotools/space/spacetojson.h
templatesnotify.o: ../../winix/core/timezones.h ../../winix/core/timezone.h notifythread.o: ../../../winix/winixd/core/session.h
templatesnotify.o: ../../winix/core/synchro.h notifythread.o: ../../../winix/winixd/core/plugindata.h
templatesnotify.o: ../../winix/functions/functionparser.h notifythread.o: ../../../winix/winixd/core/rebus.h
templatesnotify.o: ../../winix/core/cur.h ../../winix/functions/account.h notifythread.o: ../../../winix/winixd/core/ipban.h
templatesnotify.o: ../../winix/functions/adduser.h notifythread.o: ../../../winix/winixd/core/mount.h
templatesnotify.o: ../../winix/functions/cat.h ../../winix/functions/chmod.h notifythread.o: ../../../winix/winixd/core/lastcontainer.h
templatesnotify.o: ../../winix/functions/privchanger.h notifythread.o: ../../../winix/winixd/db/db.h
templatesnotify.o: ../../winix/functions/chown.h notifythread.o: ../../../winix/winixd/db/dbbase.h
templatesnotify.o: ../../winix/functions/ckeditor.h notifythread.o: ../../../winix/winixd/db/dbconn.h
templatesnotify.o: ../../winix/functions/cp.h ../../winix/functions/default.h notifythread.o: ../../../winix/winixd/db/dbtextstream.h
templatesnotify.o: ../../winix/functions/download.h notifythread.o: ../../../winix/winixd/core/error.h
templatesnotify.o: ../../winix/functions/emacs.h ../../winix/functions/env.h notifythread.o: ../../../winix/winixd/db/dbitemquery.h
templatesnotify.o: ../../winix/functions/imgcrop.h notifythread.o: ../../../winix/winixd/core/item.h
templatesnotify.o: ../../winix/functions/last.h ../../winix/functions/login.h notifythread.o: ../../../winix/winixd/db/dbitemcolumns.h
templatesnotify.o: ../../winix/functions/logout.h ../../winix/functions/ln.h notifythread.o: ../../../winix/winixd/core/user.h
templatesnotify.o: ../../winix/functions/ls.h ../../winix/functions/man.h notifythread.o: ../../../winix/winixd/core/group.h
templatesnotify.o: ../../winix/functions/meta.h ../../winix/functions/mkdir.h notifythread.o: ../../../winix/winixd/core/dircontainer.h
templatesnotify.o: ../../winix/functions/mv.h ../../winix/functions/nicedit.h notifythread.o: ../../../winix/winixd/core/ugcontainer.h
templatesnotify.o: ../../winix/functions/node.h notifythread.o: ../../../winix/winixd/templates/patterns.h
templatesnotify.o: ../../winix/functions/passwd.h templatesnotify.o: templatesnotify.h ../../../ezc/src/ezc.h
templatesnotify.o: ../../winix/functions/priv.h ../../winix/functions/pw.h templatesnotify.o: ../../../ezc/src/generator.h ../../../ezc/src/blocks.h
templatesnotify.o: ../../winix/functions/reload.h ../../winix/functions/rm.h templatesnotify.o: ../../../ezc/src/item.h ../../../ezc/src/cache.h
templatesnotify.o: ../../winix/functions/rmuser.h templatesnotify.o: ../../../ezc/src/functions.h
templatesnotify.o: ../../winix/functions/sort.h templatesnotify.o: ../../../pikotools/utf8/utf8.h ../../../ezc/src/funinfo.h
templatesnotify.o: ../../winix/functions/specialdefault.h templatesnotify.o: ../../../ezc/src/objects.h ../../../ezc/src/pattern.h
templatesnotify.o: ../../winix/functions/stat.h templatesnotify.o: ../../../ezc/src/outstreams.h
templatesnotify.o: ../../winix/functions/subject.h templatesnotify.o: ../../../ezc/src/patternparser.h
templatesnotify.o: ../../winix/functions/template.h templatesnotify.o: ../../../winix/winixd/core/textstream.h
templatesnotify.o: ../../winix/functions/tinymce.h templatesnotify.o: ../../../winix/winixd/templates/misc.h
templatesnotify.o: ../../winix/functions/uname.h templatesnotify.o: ../../../winix/winixd/templates/localefilter.h
templatesnotify.o: ../../winix/functions/upload.h templatesnotify.o: ../../../winix/winixd/templates/locale.h
templatesnotify.o: ../../winix/functions/uptime.h ../../winix/functions/who.h templatesnotify.o: ../../../winix/winixd/templates/htmltextstream.h
templatesnotify.o: ../../winix/functions/vim.h ../../winix/core/htmlfilter.h templatesnotify.o: ../../../pikotools/space/space.h
templatesnotify.o: ../../winix/templates/templates.h templatesnotify.o: ../../../pikotools/date/date.h
templatesnotify.o: ../../winix/templates/patterncacher.h templatesnotify.o: ../../../pikotools/textstream/textstream.h
templatesnotify.o: ../../winix/templates/indexpatterns.h templatesnotify.o: ../../../pikotools/convert/convert.h
templatesnotify.o: ../../winix/templates/patterns.h templatesnotify.o: ../../../pikotools/convert/inttostr.h
templatesnotify.o: ../../winix/templates/changepatterns.h templatesnotify.o: ../../../pikotools/membuffer/membuffer.h
templatesnotify.o: ../../winix/core/sessionmanager.h templatesnotify.o: ../../../pikotools/textstream/types.h notifypool.h
templatesnotify.o: ../../winix/core/sessioncontainer.h templatesnotify.o: ../../../winix/winixd/templates/locale.h
templatesnotify.o: ../../winix/core/ipbancontainer.h templatesnotify.o: ../../../pikotools/space/spaceparser.h
templatesnotify.o: ../../winix/core/lastcontainer.h templatesnotify.o: ../../../pikotools/space/space.h
templatesnotify.o: ../../winix/core/sessionidmanager.h templatesnotify.o: ../../../pikotools/textstream/types.h
templatesnotify.o: ../../tito/src/base64.h ../../tito/src/aes.h templatesnotify.o: ../../../winix/winixd/core/plugin.h
templatesnotify.o: ../../winix/core/misc.h ../../winix/core/winix_const.h templatesnotify.o: ../../../winix/winixd/core/pluginmsg.h
templatesnotify.o: ../../../winix/winixd/core/log.h
templatesnotify.o: ../../../winix/winixd/core/textstream.h
templatesnotify.o: ../../../winix/winixd/core/logmanipulators.h
templatesnotify.o: ../../../winix/winixd/core/slog.h
templatesnotify.o: ../../../winix/winixd/core/cur.h
templatesnotify.o: ../../../winix/winixd/core/request.h
templatesnotify.o: ../../../winix/winixd/core/requesttypes.h
templatesnotify.o: ../../../winix/winixd/core/error.h
templatesnotify.o: ../../../winix/winixd/core/config.h
templatesnotify.o: ../../../winix/winixd/templates/htmltextstream.h
templatesnotify.o: ../../../pikotools/space/spacetojson.h
templatesnotify.o: ../../../winix/winixd/core/session.h
templatesnotify.o: ../../../winix/winixd/core/user.h
templatesnotify.o: ../../../winix/winixd/core/plugindata.h
templatesnotify.o: ../../../winix/winixd/core/rebus.h
templatesnotify.o: ../../../winix/winixd/core/ipban.h
templatesnotify.o: ../../../winix/winixd/core/mount.h
templatesnotify.o: ../../../winix/winixd/core/system.h
templatesnotify.o: ../../../winix/winixd/core/sessionmanager.h
templatesnotify.o: ../../../winix/winixd/core/synchro.h
templatesnotify.o: ../../../winix/winixd/functions/functions.h
templatesnotify.o: ../../../winix/winixd/functions/functionbase.h
templatesnotify.o: ../../../winix/winixd/core/item.h
templatesnotify.o: ../../../winix/winixd/db/db.h
templatesnotify.o: ../../../winix/winixd/db/dbbase.h
templatesnotify.o: ../../../winix/winixd/db/dbconn.h
templatesnotify.o: ../../../winix/winixd/db/dbtextstream.h
templatesnotify.o: ../../../winix/winixd/core/error.h
templatesnotify.o: ../../../winix/winixd/db/dbitemquery.h
templatesnotify.o: ../../../winix/winixd/db/dbitemcolumns.h
templatesnotify.o: ../../../winix/winixd/core/user.h
templatesnotify.o: ../../../winix/winixd/core/group.h
templatesnotify.o: ../../../winix/winixd/core/dircontainer.h
templatesnotify.o: ../../../winix/winixd/core/ugcontainer.h
templatesnotify.o: ../../../winix/winixd/core/request.h
templatesnotify.o: ../../../winix/winixd/core/config.h
templatesnotify.o: ../../../winix/winixd/core/htmlfilter.h
templatesnotify.o: ../../../winix/winixd/core/system.h
templatesnotify.o: ../../../winix/winixd/core/job.h
templatesnotify.o: ../../../winix/winixd/core/basethread.h
templatesnotify.o: ../../../winix/winixd/core/dirs.h
templatesnotify.o: ../../../winix/winixd/core/dircontainer.h
templatesnotify.o: ../../../winix/winixd/notify/notify.h
templatesnotify.o: ../../../winix/winixd/core/mounts.h
templatesnotify.o: ../../../winix/winixd/core/mountparser.h
templatesnotify.o: ../../../winix/winixd/core/crypt.h
templatesnotify.o: ../../../winix/winixd/core/run.h
templatesnotify.o: ../../../winix/winixd/core/users.h
templatesnotify.o: ../../../winix/winixd/core/groups.h
templatesnotify.o: ../../../winix/winixd/core/group.h
templatesnotify.o: ../../../winix/winixd/core/ugcontainer.h
templatesnotify.o: ../../../winix/winixd/core/loadavg.h
templatesnotify.o: ../../../winix/winixd/core/image.h
templatesnotify.o: ../../../winix/winixd/core/threadmanager.h
templatesnotify.o: ../../../winix/winixd/core/timezones.h
templatesnotify.o: ../../../winix/winixd/core/timezone.h
templatesnotify.o: ../../../winix/winixd/core/synchro.h
templatesnotify.o: ../../../winix/winixd/functions/functionparser.h
templatesnotify.o: ../../../winix/winixd/core/cur.h
templatesnotify.o: ../../../winix/winixd/functions/account.h
templatesnotify.o: ../../../winix/winixd/functions/adduser.h
templatesnotify.o: ../../../winix/winixd/functions/cat.h
templatesnotify.o: ../../../winix/winixd/functions/chmod.h
templatesnotify.o: ../../../winix/winixd/functions/privchanger.h
templatesnotify.o: ../../../winix/winixd/functions/chown.h
templatesnotify.o: ../../../winix/winixd/functions/ckeditor.h
templatesnotify.o: ../../../winix/winixd/functions/cp.h
templatesnotify.o: ../../../winix/winixd/functions/default.h
templatesnotify.o: ../../../winix/winixd/functions/download.h
templatesnotify.o: ../../../winix/winixd/functions/emacs.h
templatesnotify.o: ../../../winix/winixd/functions/env.h
templatesnotify.o: ../../../winix/winixd/functions/imgcrop.h
templatesnotify.o: ../../../winix/winixd/functions/last.h
templatesnotify.o: ../../../winix/winixd/functions/login.h
templatesnotify.o: ../../../winix/winixd/functions/logout.h
templatesnotify.o: ../../../winix/winixd/functions/ln.h
templatesnotify.o: ../../../winix/winixd/functions/ls.h
templatesnotify.o: ../../../winix/winixd/functions/man.h
templatesnotify.o: ../../../winix/winixd/functions/meta.h
templatesnotify.o: ../../../winix/winixd/functions/mkdir.h
templatesnotify.o: ../../../winix/winixd/functions/mv.h
templatesnotify.o: ../../../winix/winixd/functions/nicedit.h
templatesnotify.o: ../../../winix/winixd/functions/node.h
templatesnotify.o: ../../../winix/winixd/functions/passwd.h
templatesnotify.o: ../../../winix/winixd/functions/priv.h
templatesnotify.o: ../../../winix/winixd/functions/pw.h
templatesnotify.o: ../../../winix/winixd/functions/reload.h
templatesnotify.o: ../../../winix/winixd/functions/rm.h
templatesnotify.o: ../../../winix/winixd/functions/rmuser.h
templatesnotify.o: ../../../winix/winixd/functions/sort.h
templatesnotify.o: ../../../winix/winixd/functions/specialdefault.h
templatesnotify.o: ../../../winix/winixd/functions/stat.h
templatesnotify.o: ../../../winix/winixd/functions/subject.h
templatesnotify.o: ../../../winix/winixd/functions/template.h
templatesnotify.o: ../../../winix/winixd/functions/tinymce.h
templatesnotify.o: ../../../winix/winixd/functions/uname.h
templatesnotify.o: ../../../winix/winixd/functions/upload.h
templatesnotify.o: ../../../winix/winixd/functions/uptime.h
templatesnotify.o: ../../../winix/winixd/functions/who.h
templatesnotify.o: ../../../winix/winixd/functions/vim.h
templatesnotify.o: ../../../winix/winixd/core/htmlfilter.h
templatesnotify.o: ../../../winix/winixd/templates/templates.h
templatesnotify.o: ../../../winix/winixd/templates/patterncacher.h
templatesnotify.o: ../../../winix/winixd/templates/indexpatterns.h
templatesnotify.o: ../../../winix/winixd/templates/patterns.h
templatesnotify.o: ../../../winix/winixd/templates/changepatterns.h
templatesnotify.o: ../../../winix/winixd/core/sessionmanager.h
templatesnotify.o: ../../../winix/winixd/core/sessioncontainer.h
templatesnotify.o: ../../../winix/winixd/core/ipbancontainer.h
templatesnotify.o: ../../../winix/winixd/core/lastcontainer.h
templatesnotify.o: ../../../winix/winixd/core/sessionidmanager.h
templatesnotify.o: ../../../tito/src/base64.h ../../../tito/src/aes.h
templatesnotify.o: ../../../winix/winixd/core/misc.h
templatesnotify.o: ../../../winix/winixd/core/winix_const.h

View File

@ -1,5 +1,10 @@
include Makefile.o.dep include Makefile.o.dep
current_path := $(shell pwd)
global_relative_working_dir := $(shell relative_path $(current_path) $(GLOBAL_WORKING_DIR))
winix_include_paths = -I$(global_relative_working_dir)/winix/winixd -I$(global_relative_working_dir)/ezc/src -I$(global_relative_working_dir)/tito/src -I$(global_relative_working_dir)/pikotools
name = export.so name = export.so
@ -8,17 +13,17 @@ all: $(name)
# -lcurl is used when linking the main winix.so so we don't have to use it here # -lcurl is used when linking the main winix.so so we don't have to use it here
$(name): $(o) $(name): $(o)
$(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $(LDFLAGS) *.o $(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(winix_include_paths) $(LDFLAGS) *.o
%.o: %.cpp %.o: %.cpp
$(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< $(CXX) -c $(CXXFLAGS) $(winix_include_paths) $<
depend: depend:
makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep makedepend -Y. $(winix_include_paths) -f- *.cpp > Makefile.dep
echo -n "o = " > Makefile.o.dep echo -n "o = " > Makefile.o.dep
ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep

View File

@ -1,264 +1,407 @@
# DO NOT DELETE # DO NOT DELETE
edb.o: edb.h ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h edb.o: edb.h ../../../../winix/winixd/db/dbbase.h
edb.o: ../../../winix/db/dbtextstream.h ../../../winix/core/textstream.h edb.o: ../../../../winix/winixd/db/dbconn.h
edb.o: ../../../winix/core/misc.h ../../../winix/core/item.h edb.o: ../../../../winix/winixd/db/dbtextstream.h
edb.o: ../../../pikotools/space/space.h ../../../pikotools/textstream/types.h edb.o: ../../../../winix/winixd/core/textstream.h
edb.o: ../../../pikotools/date/date.h ../../../winix/core/requesttypes.h edb.o: ../../../../winix/winixd/core/misc.h
edb.o: ../../../pikotools/textstream/textstream.h edb.o: ../../../../winix/winixd/core/item.h
edb.o: ../../../pikotools/convert/convert.h edb.o: ../../../../pikotools/space/space.h
edb.o: ../../../pikotools/convert/inttostr.h edb.o: ../../../../pikotools/textstream/types.h
edb.o: ../../../pikotools/membuffer/membuffer.h edb.o: ../../../../pikotools/date/date.h
edb.o: ../../../pikotools/textstream/types.h ../../../pikotools/utf8/utf8.h edb.o: ../../../../winix/winixd/core/requesttypes.h
edb.o: ../../../winix/core/winix_const.h ../../../winix/core/error.h edb.o: ../../../../pikotools/textstream/textstream.h
edb.o: ../../../pikotools/space/spaceparser.h edb.o: ../../../../pikotools/convert/convert.h
edb.o: ../../../pikotools/space/space.h export.h ../../../winix/core/dirs.h edb.o: ../../../../pikotools/convert/inttostr.h
edb.o: ../../../winix/core/dircontainer.h ../../../winix/db/db.h edb.o: ../../../../pikotools/membuffer/membuffer.h
edb.o: ../../../winix/db/dbbase.h ../../../winix/db/dbitemquery.h edb.o: ../../../../pikotools/textstream/types.h
edb.o: ../../../winix/core/item.h ../../../winix/db/dbitemcolumns.h edb.o: ../../../../pikotools/utf8/utf8.h
edb.o: ../../../winix/core/user.h ../../../winix/core/group.h edb.o: ../../../../winix/winixd/core/winix_const.h
edb.o: ../../../winix/core/dircontainer.h ../../../winix/core/ugcontainer.h edb.o: ../../../../winix/winixd/core/error.h
edb.o: ../../../winix/core/log.h ../../../winix/core/textstream.h edb.o: ../../../../pikotools/space/spaceparser.h
edb.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h edb.o: ../../../../pikotools/space/space.h export.h
edb.o: ../../../winix/core/cur.h ../../../winix/core/request.h edb.o: ../../../../winix/winixd/core/dirs.h
edb.o: ../../../winix/core/error.h ../../../winix/core/config.h edb.o: ../../../../winix/winixd/core/dircontainer.h
edb.o: ../../../winix/core/htmlfilter.h edb.o: ../../../../winix/winixd/db/db.h ../../../../winix/winixd/db/dbbase.h
edb.o: ../../../winix/templates/htmltextstream.h edb.o: ../../../../winix/winixd/db/dbitemquery.h
edb.o: ../../../pikotools/space/spacetojson.h ../../../ezc/src/outstreams.h edb.o: ../../../../winix/winixd/core/item.h
edb.o: ../../../winix/core/session.h ../../../winix/core/user.h edb.o: ../../../../winix/winixd/db/dbitemcolumns.h
edb.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h edb.o: ../../../../winix/winixd/core/user.h
edb.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h edb.o: ../../../../winix/winixd/core/group.h
edb.o: ../../../winix/templates/locale.h ../../../winix/notify/notify.h edb.o: ../../../../winix/winixd/core/dircontainer.h
edb.o: ../../../winix/notify/notifypool.h ../../../winix/templates/patterns.h edb.o: ../../../../winix/winixd/core/ugcontainer.h
edb.o: ../../../winix/templates/locale.h edb.o: ../../../../winix/winixd/core/log.h
edb.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h edb.o: ../../../../winix/winixd/core/textstream.h
edb.o: ../../../ezc/src/generator.h ../../../ezc/src/blocks.h edb.o: ../../../../winix/winixd/core/logmanipulators.h
edb.o: ../../../ezc/src/cache.h ../../../ezc/src/functions.h edb.o: ../../../../winix/winixd/core/slog.h
edb.o: ../../../ezc/src/funinfo.h ../../../ezc/src/objects.h edb.o: ../../../../winix/winixd/core/cur.h
edb.o: ../../../ezc/src/pattern.h ../../../ezc/src/patternparser.h edb.o: ../../../../winix/winixd/core/request.h
edb.o: ../../../winix/notify/notifythread.h ../../../winix/core/basethread.h edb.o: ../../../../winix/winixd/core/error.h
edb.o: ../../../winix/core/synchro.h ../../../winix/notify/templatesnotify.h edb.o: ../../../../winix/winixd/core/config.h
edb.o: ../../../winix/core/config.h ../../../winix/core/users.h edb.o: ../../../../winix/winixd/core/htmlfilter.h
edb.o: ../../../winix/core/ugcontainer.h ../../../winix/core/lastcontainer.h edb.o: ../../../../winix/winixd/templates/htmltextstream.h
edb.o: ../../../winix/core/log.h edb.o: ../../../../pikotools/space/spacetojson.h
exportinfo.o: ../../../winix/core/log.h exportinfo.h edb.o: ../../../../ezc/src/outstreams.h
exportinfo.o: ../../../winix/core/system.h ../../../winix/core/job.h edb.o: ../../../../winix/winixd/core/session.h
exportinfo.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h edb.o: ../../../../winix/winixd/core/user.h
exportinfo.o: ../../../pikotools/space/space.h edb.o: ../../../../winix/winixd/core/plugindata.h
exportinfo.o: ../../../pikotools/textstream/types.h edb.o: ../../../../winix/winixd/core/rebus.h
exportinfo.o: ../../../winix/core/dirs.h ../../../winix/core/item.h edb.o: ../../../../winix/winixd/core/ipban.h
exportinfo.o: ../../../pikotools/date/date.h edb.o: ../../../../winix/winixd/core/mount.h
exportinfo.o: ../../../winix/core/dircontainer.h ../../../winix/db/db.h edb.o: ../../../../winix/winixd/templates/locale.h
exportinfo.o: ../../../winix/db/dbbase.h ../../../winix/db/dbitemquery.h edb.o: ../../../../winix/winixd/notify/notify.h
exportinfo.o: ../../../winix/core/item.h ../../../winix/db/dbitemcolumns.h edb.o: ../../../../winix/winixd/notify/notifypool.h
exportinfo.o: ../../../winix/core/user.h ../../../winix/core/group.h edb.o: ../../../../winix/winixd/templates/patterns.h
exportinfo.o: ../../../winix/core/dircontainer.h edb.o: ../../../../winix/winixd/templates/locale.h
exportinfo.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h edb.o: ../../../../winix/winixd/templates/localefilter.h
exportinfo.o: ../../../winix/core/textstream.h edb.o: ../../../../ezc/src/ezc.h ../../../../ezc/src/generator.h
exportinfo.o: ../../../winix/core/logmanipulators.h edb.o: ../../../../ezc/src/blocks.h ../../../../ezc/src/cache.h
exportinfo.o: ../../../pikotools/textstream/textstream.h edb.o: ../../../../ezc/src/functions.h ../../../../ezc/src/funinfo.h
exportinfo.o: ../../../pikotools/convert/convert.h edb.o: ../../../../ezc/src/objects.h ../../../../ezc/src/pattern.h
exportinfo.o: ../../../pikotools/convert/inttostr.h edb.o: ../../../../ezc/src/patternparser.h
exportinfo.o: ../../../pikotools/membuffer/membuffer.h edb.o: ../../../../winix/winixd/notify/notifythread.h
exportinfo.o: ../../../pikotools/textstream/types.h edb.o: ../../../../winix/winixd/core/basethread.h
exportinfo.o: ../../../winix/core/slog.h ../../../winix/core/cur.h edb.o: ../../../../winix/winixd/core/synchro.h
exportinfo.o: ../../../winix/core/request.h edb.o: ../../../../winix/winixd/notify/templatesnotify.h
exportinfo.o: ../../../winix/core/requesttypes.h ../../../winix/core/error.h edb.o: ../../../../winix/winixd/core/config.h
exportinfo.o: ../../../winix/core/config.h edb.o: ../../../../winix/winixd/core/users.h
exportinfo.o: ../../../pikotools/space/spaceparser.h edb.o: ../../../../winix/winixd/core/ugcontainer.h
exportinfo.o: ../../../pikotools/space/space.h edb.o: ../../../../winix/winixd/core/lastcontainer.h
exportinfo.o: ../../../winix/core/htmlfilter.h edb.o: ../../../../winix/winixd/core/log.h
exportinfo.o: ../../../winix/templates/htmltextstream.h exportinfo.o: ../../../../winix/winixd/core/log.h exportinfo.h
exportinfo.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h exportinfo.o: ../../../../winix/winixd/core/system.h
exportinfo.o: ../../../pikotools/utf8/utf8.h exportinfo.o: ../../../../winix/winixd/core/job.h
exportinfo.o: ../../../winix/core/winix_const.h exportinfo.o: ../../../../winix/winixd/core/basethread.h
exportinfo.o: ../../../pikotools/space/spacetojson.h exportinfo.o: ../../../../winix/winixd/core/synchro.h
exportinfo.o: ../../../ezc/src/outstreams.h ../../../winix/core/session.h exportinfo.o: ../../../../pikotools/space/space.h
exportinfo.o: ../../../winix/core/user.h ../../../winix/core/plugindata.h exportinfo.o: ../../../../pikotools/textstream/types.h
exportinfo.o: ../../../winix/core/rebus.h ../../../winix/core/ipban.h exportinfo.o: ../../../../winix/winixd/core/dirs.h
exportinfo.o: ../../../winix/core/mount.h ../../../winix/templates/locale.h exportinfo.o: ../../../../winix/winixd/core/item.h
exportinfo.o: ../../../winix/notify/notify.h exportinfo.o: ../../../../pikotools/date/date.h
exportinfo.o: ../../../winix/notify/notifypool.h exportinfo.o: ../../../../winix/winixd/core/dircontainer.h
exportinfo.o: ../../../winix/templates/patterns.h exportinfo.o: ../../../../winix/winixd/db/db.h
exportinfo.o: ../../../winix/templates/locale.h exportinfo.o: ../../../../winix/winixd/db/dbbase.h
exportinfo.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h exportinfo.o: ../../../../winix/winixd/db/dbitemquery.h
exportinfo.o: ../../../ezc/src/generator.h ../../../ezc/src/blocks.h exportinfo.o: ../../../../winix/winixd/core/item.h
exportinfo.o: ../../../ezc/src/cache.h ../../../ezc/src/functions.h exportinfo.o: ../../../../winix/winixd/db/dbitemcolumns.h
exportinfo.o: ../../../ezc/src/funinfo.h ../../../ezc/src/objects.h exportinfo.o: ../../../../winix/winixd/core/user.h
exportinfo.o: ../../../ezc/src/pattern.h ../../../ezc/src/patternparser.h exportinfo.o: ../../../../winix/winixd/core/group.h
exportinfo.o: ../../../winix/notify/notifythread.h exportinfo.o: ../../../../winix/winixd/core/dircontainer.h
exportinfo.o: ../../../winix/core/basethread.h exportinfo.o: ../../../../winix/winixd/core/ugcontainer.h
exportinfo.o: ../../../winix/notify/templatesnotify.h exportinfo.o: ../../../../winix/winixd/core/log.h
exportinfo.o: ../../../winix/core/config.h ../../../winix/core/users.h exportinfo.o: ../../../../winix/winixd/core/textstream.h
exportinfo.o: ../../../winix/core/ugcontainer.h exportinfo.o: ../../../../winix/winixd/core/logmanipulators.h
exportinfo.o: ../../../winix/core/lastcontainer.h exportinfo.o: ../../../../pikotools/textstream/textstream.h
exportinfo.o: ../../../winix/core/mounts.h ../../../winix/core/mountparser.h exportinfo.o: ../../../../pikotools/convert/convert.h
exportinfo.o: ../../../winix/core/crypt.h ../../../winix/core/run.h exportinfo.o: ../../../../pikotools/convert/inttostr.h
exportinfo.o: ../../../winix/core/users.h ../../../winix/core/groups.h exportinfo.o: ../../../../pikotools/membuffer/membuffer.h
exportinfo.o: ../../../winix/core/group.h ../../../winix/core/loadavg.h exportinfo.o: ../../../../pikotools/textstream/types.h
exportinfo.o: ../../../winix/core/image.h ../../../winix/core/threadmanager.h exportinfo.o: ../../../../winix/winixd/core/slog.h
exportinfo.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h exportinfo.o: ../../../../winix/winixd/core/cur.h
exportinfo.o: export.h edb.h ../../../winix/db/dbbase.h exportinfo.o: ../../../../winix/winixd/core/request.h
exportinfo.o: ../../../winix/db/dbconn.h ../../../winix/db/dbtextstream.h exportinfo.o: ../../../../winix/winixd/core/requesttypes.h
exportinfo.o: ../../../winix/core/error.h ../../../winix/core/dirs.h exportinfo.o: ../../../../winix/winixd/core/error.h
exportinfo.o: message.h exportthread.h exportinfo.o: ../../../../winix/winixd/core/config.h
exportthread.o: exportthread.h ../../../winix/core/basethread.h exportinfo.o: ../../../../pikotools/space/spaceparser.h
exportthread.o: ../../../winix/core/synchro.h message.h exportinfo.o: ../../../../pikotools/space/space.h
exportthread.o: ../../../winix/core/log.h ../../../winix/core/misc.h exportinfo.o: ../../../../winix/winixd/core/htmlfilter.h
exportthread.o: ../../../winix/core/item.h ../../../pikotools/space/space.h exportinfo.o: ../../../../winix/winixd/templates/htmltextstream.h
exportthread.o: ../../../pikotools/textstream/types.h exportinfo.o: ../../../../winix/winixd/core/textstream.h
exportthread.o: ../../../pikotools/date/date.h exportinfo.o: ../../../../winix/winixd/core/misc.h
exportthread.o: ../../../winix/core/requesttypes.h exportinfo.o: ../../../../pikotools/utf8/utf8.h
exportthread.o: ../../../pikotools/textstream/textstream.h exportinfo.o: ../../../../winix/winixd/core/winix_const.h
exportthread.o: ../../../pikotools/convert/convert.h exportinfo.o: ../../../../pikotools/space/spacetojson.h
exportthread.o: ../../../pikotools/convert/inttostr.h exportinfo.o: ../../../../ezc/src/outstreams.h
exportthread.o: ../../../pikotools/membuffer/membuffer.h exportinfo.o: ../../../../winix/winixd/core/session.h
exportthread.o: ../../../pikotools/textstream/types.h exportinfo.o: ../../../../winix/winixd/core/user.h
exportthread.o: ../../../pikotools/utf8/utf8.h exportinfo.o: ../../../../winix/winixd/core/plugindata.h
exportthread.o: ../../../winix/core/winix_const.h exportinfo.o: ../../../../winix/winixd/core/rebus.h
funexport.o: funexport.h ../../../winix/functions/functionbase.h exportinfo.o: ../../../../winix/winixd/core/ipban.h
funexport.o: ../../../winix/core/item.h ../../../winix/db/db.h exportinfo.o: ../../../../winix/winixd/core/mount.h
funexport.o: ../../../winix/db/dbbase.h ../../../winix/db/dbitemquery.h exportinfo.o: ../../../../winix/winixd/templates/locale.h
funexport.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h exportinfo.o: ../../../../winix/winixd/notify/notify.h
funexport.o: ../../../pikotools/space/space.h exportinfo.o: ../../../../winix/winixd/notify/notifypool.h
funexport.o: ../../../pikotools/textstream/types.h exportinfo.o: ../../../../winix/winixd/templates/patterns.h
funexport.o: ../../../pikotools/date/date.h ../../../winix/core/group.h exportinfo.o: ../../../../winix/winixd/templates/locale.h
funexport.o: ../../../winix/core/dircontainer.h exportinfo.o: ../../../../winix/winixd/templates/localefilter.h
funexport.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h exportinfo.o: ../../../../ezc/src/ezc.h ../../../../ezc/src/generator.h
funexport.o: ../../../winix/core/textstream.h exportinfo.o: ../../../../ezc/src/blocks.h ../../../../ezc/src/cache.h
funexport.o: ../../../winix/core/logmanipulators.h exportinfo.o: ../../../../ezc/src/functions.h ../../../../ezc/src/funinfo.h
funexport.o: ../../../pikotools/textstream/textstream.h exportinfo.o: ../../../../ezc/src/objects.h ../../../../ezc/src/pattern.h
funexport.o: ../../../pikotools/convert/convert.h exportinfo.o: ../../../../ezc/src/patternparser.h
funexport.o: ../../../pikotools/convert/inttostr.h exportinfo.o: ../../../../winix/winixd/notify/notifythread.h
funexport.o: ../../../pikotools/membuffer/membuffer.h exportinfo.o: ../../../../winix/winixd/core/basethread.h
funexport.o: ../../../pikotools/textstream/types.h ../../../winix/core/slog.h exportinfo.o: ../../../../winix/winixd/notify/templatesnotify.h
funexport.o: ../../../winix/core/cur.h ../../../winix/core/request.h exportinfo.o: ../../../../winix/winixd/core/config.h
funexport.o: ../../../winix/core/requesttypes.h ../../../winix/core/item.h exportinfo.o: ../../../../winix/winixd/core/users.h
funexport.o: ../../../winix/core/error.h ../../../winix/core/config.h exportinfo.o: ../../../../winix/winixd/core/ugcontainer.h
funexport.o: ../../../pikotools/space/spaceparser.h exportinfo.o: ../../../../winix/winixd/core/lastcontainer.h
funexport.o: ../../../pikotools/space/space.h exportinfo.o: ../../../../winix/winixd/core/mounts.h
funexport.o: ../../../winix/core/htmlfilter.h exportinfo.o: ../../../../winix/winixd/core/mountparser.h
funexport.o: ../../../winix/templates/htmltextstream.h exportinfo.o: ../../../../winix/winixd/core/crypt.h
funexport.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h exportinfo.o: ../../../../winix/winixd/core/run.h
funexport.o: ../../../pikotools/utf8/utf8.h ../../../winix/core/winix_const.h exportinfo.o: ../../../../winix/winixd/core/users.h
funexport.o: ../../../pikotools/space/spacetojson.h exportinfo.o: ../../../../winix/winixd/core/groups.h
funexport.o: ../../../ezc/src/outstreams.h ../../../winix/core/session.h exportinfo.o: ../../../../winix/winixd/core/group.h
funexport.o: ../../../winix/core/user.h ../../../winix/core/plugindata.h exportinfo.o: ../../../../winix/winixd/core/loadavg.h
funexport.o: ../../../winix/core/rebus.h ../../../winix/core/ipban.h exportinfo.o: ../../../../winix/winixd/core/image.h
funexport.o: ../../../winix/core/mount.h ../../../winix/templates/locale.h exportinfo.o: ../../../../winix/winixd/core/threadmanager.h
funexport.o: ../../../winix/core/request.h ../../../winix/core/config.h exportinfo.o: ../../../../winix/winixd/core/timezones.h
funexport.o: ../../../winix/core/system.h ../../../winix/core/job.h exportinfo.o: ../../../../winix/winixd/core/timezone.h export.h edb.h
funexport.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h exportinfo.o: ../../../../winix/winixd/db/dbbase.h
funexport.o: ../../../winix/core/dirs.h ../../../winix/core/dircontainer.h exportinfo.o: ../../../../winix/winixd/db/dbconn.h
funexport.o: ../../../winix/notify/notify.h exportinfo.o: ../../../../winix/winixd/db/dbtextstream.h
funexport.o: ../../../winix/notify/notifypool.h exportinfo.o: ../../../../winix/winixd/core/error.h
funexport.o: ../../../winix/templates/patterns.h exportinfo.o: ../../../../winix/winixd/core/dirs.h message.h exportthread.h
funexport.o: ../../../winix/templates/locale.h exportthread.o: exportthread.h ../../../../winix/winixd/core/basethread.h
funexport.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h exportthread.o: ../../../../winix/winixd/core/synchro.h message.h
funexport.o: ../../../ezc/src/generator.h ../../../ezc/src/blocks.h exportthread.o: ../../../../winix/winixd/core/log.h
funexport.o: ../../../ezc/src/cache.h ../../../ezc/src/functions.h exportthread.o: ../../../../winix/winixd/core/misc.h
funexport.o: ../../../ezc/src/funinfo.h ../../../ezc/src/objects.h exportthread.o: ../../../../winix/winixd/core/item.h
funexport.o: ../../../ezc/src/pattern.h ../../../ezc/src/patternparser.h exportthread.o: ../../../../pikotools/space/space.h
funexport.o: ../../../winix/notify/notifythread.h exportthread.o: ../../../../pikotools/textstream/types.h
funexport.o: ../../../winix/core/basethread.h exportthread.o: ../../../../pikotools/date/date.h
funexport.o: ../../../winix/notify/templatesnotify.h exportthread.o: ../../../../winix/winixd/core/requesttypes.h
funexport.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h exportthread.o: ../../../../pikotools/textstream/textstream.h
funexport.o: ../../../winix/core/lastcontainer.h ../../../winix/core/mounts.h exportthread.o: ../../../../pikotools/convert/convert.h
funexport.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h exportthread.o: ../../../../pikotools/convert/inttostr.h
funexport.o: ../../../winix/core/run.h ../../../winix/core/users.h exportthread.o: ../../../../pikotools/membuffer/membuffer.h
funexport.o: ../../../winix/core/groups.h ../../../winix/core/group.h exportthread.o: ../../../../pikotools/textstream/types.h
funexport.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h exportthread.o: ../../../../pikotools/utf8/utf8.h
funexport.o: ../../../winix/core/threadmanager.h exportthread.o: ../../../../winix/winixd/core/winix_const.h
funexport.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h funexport.o: funexport.h ../../../../winix/winixd/functions/functionbase.h
funexport.o: ../../../winix/core/synchro.h exportinfo.h export.h edb.h funexport.o: ../../../../winix/winixd/core/item.h
funexport.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h funexport.o: ../../../../winix/winixd/db/db.h
funexport.o: ../../../winix/db/dbtextstream.h ../../../winix/core/error.h funexport.o: ../../../../winix/winixd/db/dbbase.h
funexport.o: ../../../winix/core/dirs.h message.h exportthread.h funexport.o: ../../../../winix/winixd/db/dbitemquery.h
init.o: ../../../winix/core/log.h ../../../winix/core/plugin.h funexport.o: ../../../../winix/winixd/db/dbitemcolumns.h
init.o: ../../../winix/core/pluginmsg.h ../../../winix/core/log.h funexport.o: ../../../../winix/winixd/core/user.h
init.o: ../../../winix/core/textstream.h funexport.o: ../../../../pikotools/space/space.h
init.o: ../../../winix/core/logmanipulators.h funexport.o: ../../../../pikotools/textstream/types.h
init.o: ../../../pikotools/textstream/textstream.h funexport.o: ../../../../pikotools/date/date.h
init.o: ../../../pikotools/space/space.h funexport.o: ../../../../winix/winixd/core/group.h
init.o: ../../../pikotools/textstream/types.h ../../../pikotools/date/date.h funexport.o: ../../../../winix/winixd/core/dircontainer.h
init.o: ../../../pikotools/convert/convert.h funexport.o: ../../../../winix/winixd/core/ugcontainer.h
init.o: ../../../pikotools/convert/inttostr.h funexport.o: ../../../../winix/winixd/core/log.h
init.o: ../../../pikotools/membuffer/membuffer.h funexport.o: ../../../../winix/winixd/core/textstream.h
init.o: ../../../pikotools/textstream/types.h ../../../winix/core/slog.h funexport.o: ../../../../winix/winixd/core/logmanipulators.h
init.o: ../../../winix/core/cur.h ../../../winix/core/request.h funexport.o: ../../../../pikotools/textstream/textstream.h
init.o: ../../../winix/core/requesttypes.h ../../../winix/core/item.h funexport.o: ../../../../pikotools/convert/convert.h
init.o: ../../../winix/core/error.h ../../../winix/core/config.h funexport.o: ../../../../pikotools/convert/inttostr.h
init.o: ../../../pikotools/space/spaceparser.h funexport.o: ../../../../pikotools/membuffer/membuffer.h
init.o: ../../../pikotools/space/space.h ../../../winix/core/htmlfilter.h funexport.o: ../../../../pikotools/textstream/types.h
init.o: ../../../winix/templates/htmltextstream.h funexport.o: ../../../../winix/winixd/core/slog.h
init.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h funexport.o: ../../../../winix/winixd/core/cur.h
init.o: ../../../pikotools/utf8/utf8.h ../../../winix/core/winix_const.h funexport.o: ../../../../winix/winixd/core/request.h
init.o: ../../../pikotools/space/spacetojson.h ../../../ezc/src/outstreams.h funexport.o: ../../../../winix/winixd/core/requesttypes.h
init.o: ../../../winix/core/session.h ../../../winix/core/user.h funexport.o: ../../../../winix/winixd/core/item.h
init.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h funexport.o: ../../../../winix/winixd/core/error.h
init.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h funexport.o: ../../../../winix/winixd/core/config.h
init.o: ../../../winix/templates/locale.h ../../../winix/core/system.h funexport.o: ../../../../pikotools/space/spaceparser.h
init.o: ../../../winix/core/job.h ../../../winix/core/basethread.h funexport.o: ../../../../pikotools/space/space.h
init.o: ../../../winix/core/synchro.h ../../../winix/core/dirs.h funexport.o: ../../../../winix/winixd/core/htmlfilter.h
init.o: ../../../winix/core/dircontainer.h ../../../winix/db/db.h funexport.o: ../../../../winix/winixd/templates/htmltextstream.h
init.o: ../../../winix/db/dbbase.h ../../../winix/db/dbitemquery.h funexport.o: ../../../../winix/winixd/core/textstream.h
init.o: ../../../winix/core/item.h ../../../winix/db/dbitemcolumns.h funexport.o: ../../../../winix/winixd/core/misc.h
init.o: ../../../winix/core/user.h ../../../winix/core/group.h funexport.o: ../../../../pikotools/utf8/utf8.h
init.o: ../../../winix/core/dircontainer.h ../../../winix/core/ugcontainer.h funexport.o: ../../../../winix/winixd/core/winix_const.h
init.o: ../../../winix/notify/notify.h ../../../winix/notify/notifypool.h funexport.o: ../../../../pikotools/space/spacetojson.h
init.o: ../../../winix/templates/patterns.h ../../../winix/templates/locale.h funexport.o: ../../../../ezc/src/outstreams.h
init.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h funexport.o: ../../../../winix/winixd/core/session.h
init.o: ../../../ezc/src/generator.h ../../../ezc/src/blocks.h funexport.o: ../../../../winix/winixd/core/user.h
init.o: ../../../ezc/src/cache.h ../../../ezc/src/functions.h funexport.o: ../../../../winix/winixd/core/plugindata.h
init.o: ../../../ezc/src/funinfo.h ../../../ezc/src/objects.h funexport.o: ../../../../winix/winixd/core/rebus.h
init.o: ../../../ezc/src/pattern.h ../../../ezc/src/patternparser.h funexport.o: ../../../../winix/winixd/core/ipban.h
init.o: ../../../winix/notify/notifythread.h ../../../winix/core/basethread.h funexport.o: ../../../../winix/winixd/core/mount.h
init.o: ../../../winix/notify/templatesnotify.h ../../../winix/core/config.h funexport.o: ../../../../winix/winixd/templates/locale.h
init.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h funexport.o: ../../../../winix/winixd/core/request.h
init.o: ../../../winix/core/lastcontainer.h ../../../winix/core/mounts.h funexport.o: ../../../../winix/winixd/core/config.h
init.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h funexport.o: ../../../../winix/winixd/core/system.h
init.o: ../../../winix/core/run.h ../../../winix/core/users.h funexport.o: ../../../../winix/winixd/core/job.h
init.o: ../../../winix/core/groups.h ../../../winix/core/group.h funexport.o: ../../../../winix/winixd/core/basethread.h
init.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h funexport.o: ../../../../winix/winixd/core/synchro.h
init.o: ../../../winix/core/threadmanager.h ../../../winix/core/timezones.h funexport.o: ../../../../winix/winixd/core/dirs.h
init.o: ../../../winix/core/timezone.h ../../../winix/core/sessionmanager.h funexport.o: ../../../../winix/winixd/core/dircontainer.h
init.o: ../../../winix/core/sessioncontainer.h funexport.o: ../../../../winix/winixd/notify/notify.h
init.o: ../../../winix/core/ipbancontainer.h funexport.o: ../../../../winix/winixd/notify/notifypool.h
init.o: ../../../winix/core/sessionidmanager.h ../../../tito/src/base64.h funexport.o: ../../../../winix/winixd/templates/patterns.h
init.o: ../../../tito/src/aes.h ../../../winix/functions/functions.h funexport.o: ../../../../winix/winixd/templates/locale.h
init.o: ../../../winix/functions/functionbase.h ../../../winix/core/request.h funexport.o: ../../../../winix/winixd/templates/localefilter.h
init.o: ../../../winix/core/system.h ../../../winix/core/synchro.h funexport.o: ../../../../ezc/src/ezc.h ../../../../ezc/src/generator.h
init.o: ../../../winix/functions/functionparser.h ../../../winix/core/cur.h funexport.o: ../../../../ezc/src/blocks.h ../../../../ezc/src/cache.h
init.o: ../../../winix/functions/account.h ../../../winix/functions/adduser.h funexport.o: ../../../../ezc/src/functions.h ../../../../ezc/src/funinfo.h
init.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h funexport.o: ../../../../ezc/src/objects.h ../../../../ezc/src/pattern.h
init.o: ../../../winix/functions/privchanger.h funexport.o: ../../../../ezc/src/patternparser.h
init.o: ../../../winix/functions/chown.h ../../../winix/functions/ckeditor.h funexport.o: ../../../../winix/winixd/notify/notifythread.h
init.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h funexport.o: ../../../../winix/winixd/core/basethread.h
init.o: ../../../winix/functions/download.h ../../../winix/functions/emacs.h funexport.o: ../../../../winix/winixd/notify/templatesnotify.h
init.o: ../../../winix/functions/env.h ../../../winix/functions/imgcrop.h funexport.o: ../../../../winix/winixd/core/users.h
init.o: ../../../winix/functions/last.h ../../../winix/functions/login.h funexport.o: ../../../../winix/winixd/core/ugcontainer.h
init.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h funexport.o: ../../../../winix/winixd/core/lastcontainer.h
init.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h funexport.o: ../../../../winix/winixd/core/mounts.h
init.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h funexport.o: ../../../../winix/winixd/core/mountparser.h
init.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h funexport.o: ../../../../winix/winixd/core/crypt.h
init.o: ../../../winix/functions/node.h ../../../winix/functions/passwd.h funexport.o: ../../../../winix/winixd/core/run.h
init.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h funexport.o: ../../../../winix/winixd/core/users.h
init.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h funexport.o: ../../../../winix/winixd/core/groups.h
init.o: ../../../winix/functions/rmuser.h ../../../winix/functions/sort.h funexport.o: ../../../../winix/winixd/core/group.h
init.o: ../../../winix/functions/specialdefault.h funexport.o: ../../../../winix/winixd/core/loadavg.h
init.o: ../../../winix/functions/stat.h ../../../winix/functions/subject.h funexport.o: ../../../../winix/winixd/core/image.h
init.o: ../../../winix/functions/template.h funexport.o: ../../../../winix/winixd/core/threadmanager.h
init.o: ../../../winix/functions/tinymce.h ../../../winix/functions/uname.h funexport.o: ../../../../winix/winixd/core/timezones.h
init.o: ../../../winix/functions/upload.h ../../../winix/functions/uptime.h funexport.o: ../../../../winix/winixd/core/timezone.h
init.o: ../../../winix/functions/who.h ../../../winix/functions/vim.h funexport.o: ../../../../winix/winixd/core/synchro.h exportinfo.h export.h
init.o: ../../../winix/core/htmlfilter.h ../../../winix/templates/templates.h funexport.o: edb.h ../../../../winix/winixd/db/dbbase.h
init.o: ../../../winix/templates/patterncacher.h funexport.o: ../../../../winix/winixd/db/dbconn.h
init.o: ../../../winix/templates/indexpatterns.h funexport.o: ../../../../winix/winixd/db/dbtextstream.h
init.o: ../../../winix/templates/patterns.h funexport.o: ../../../../winix/winixd/core/error.h
init.o: ../../../winix/templates/changepatterns.h funexport.o: ../../../../winix/winixd/core/dirs.h message.h exportthread.h
init.o: ../../../winix/templates/htmltextstream.h init.o: ../../../../winix/winixd/core/log.h
init.o: ../../../winix/core/sessionmanager.h exportthread.h message.h init.o: ../../../../winix/winixd/core/plugin.h
init.o: exportinfo.h export.h edb.h ../../../winix/db/dbbase.h init.o: ../../../../winix/winixd/core/pluginmsg.h
init.o: ../../../winix/db/dbconn.h ../../../winix/db/dbtextstream.h init.o: ../../../../winix/winixd/core/log.h
init.o: ../../../winix/core/error.h ../../../winix/core/dirs.h funexport.h init.o: ../../../../winix/winixd/core/textstream.h
init.o: ../../../winix/functions/functionbase.h init.o: ../../../../winix/winixd/core/logmanipulators.h
init.o: ../../../../pikotools/textstream/textstream.h
init.o: ../../../../pikotools/space/space.h
init.o: ../../../../pikotools/textstream/types.h
init.o: ../../../../pikotools/date/date.h
init.o: ../../../../pikotools/convert/convert.h
init.o: ../../../../pikotools/convert/inttostr.h
init.o: ../../../../pikotools/membuffer/membuffer.h
init.o: ../../../../pikotools/textstream/types.h
init.o: ../../../../winix/winixd/core/slog.h
init.o: ../../../../winix/winixd/core/cur.h
init.o: ../../../../winix/winixd/core/request.h
init.o: ../../../../winix/winixd/core/requesttypes.h
init.o: ../../../../winix/winixd/core/item.h
init.o: ../../../../winix/winixd/core/error.h
init.o: ../../../../winix/winixd/core/config.h
init.o: ../../../../pikotools/space/spaceparser.h
init.o: ../../../../pikotools/space/space.h
init.o: ../../../../winix/winixd/core/htmlfilter.h
init.o: ../../../../winix/winixd/templates/htmltextstream.h
init.o: ../../../../winix/winixd/core/textstream.h
init.o: ../../../../winix/winixd/core/misc.h
init.o: ../../../../pikotools/utf8/utf8.h
init.o: ../../../../winix/winixd/core/winix_const.h
init.o: ../../../../pikotools/space/spacetojson.h
init.o: ../../../../ezc/src/outstreams.h
init.o: ../../../../winix/winixd/core/session.h
init.o: ../../../../winix/winixd/core/user.h
init.o: ../../../../winix/winixd/core/plugindata.h
init.o: ../../../../winix/winixd/core/rebus.h
init.o: ../../../../winix/winixd/core/ipban.h
init.o: ../../../../winix/winixd/core/mount.h
init.o: ../../../../winix/winixd/templates/locale.h
init.o: ../../../../winix/winixd/core/system.h
init.o: ../../../../winix/winixd/core/job.h
init.o: ../../../../winix/winixd/core/basethread.h
init.o: ../../../../winix/winixd/core/synchro.h
init.o: ../../../../winix/winixd/core/dirs.h
init.o: ../../../../winix/winixd/core/dircontainer.h
init.o: ../../../../winix/winixd/db/db.h ../../../../winix/winixd/db/dbbase.h
init.o: ../../../../winix/winixd/db/dbitemquery.h
init.o: ../../../../winix/winixd/core/item.h
init.o: ../../../../winix/winixd/db/dbitemcolumns.h
init.o: ../../../../winix/winixd/core/user.h
init.o: ../../../../winix/winixd/core/group.h
init.o: ../../../../winix/winixd/core/dircontainer.h
init.o: ../../../../winix/winixd/core/ugcontainer.h
init.o: ../../../../winix/winixd/notify/notify.h
init.o: ../../../../winix/winixd/notify/notifypool.h
init.o: ../../../../winix/winixd/templates/patterns.h
init.o: ../../../../winix/winixd/templates/locale.h
init.o: ../../../../winix/winixd/templates/localefilter.h
init.o: ../../../../ezc/src/ezc.h ../../../../ezc/src/generator.h
init.o: ../../../../ezc/src/blocks.h ../../../../ezc/src/cache.h
init.o: ../../../../ezc/src/functions.h ../../../../ezc/src/funinfo.h
init.o: ../../../../ezc/src/objects.h ../../../../ezc/src/pattern.h
init.o: ../../../../ezc/src/patternparser.h
init.o: ../../../../winix/winixd/notify/notifythread.h
init.o: ../../../../winix/winixd/core/basethread.h
init.o: ../../../../winix/winixd/notify/templatesnotify.h
init.o: ../../../../winix/winixd/core/config.h
init.o: ../../../../winix/winixd/core/users.h
init.o: ../../../../winix/winixd/core/ugcontainer.h
init.o: ../../../../winix/winixd/core/lastcontainer.h
init.o: ../../../../winix/winixd/core/mounts.h
init.o: ../../../../winix/winixd/core/mountparser.h
init.o: ../../../../winix/winixd/core/crypt.h
init.o: ../../../../winix/winixd/core/run.h
init.o: ../../../../winix/winixd/core/users.h
init.o: ../../../../winix/winixd/core/groups.h
init.o: ../../../../winix/winixd/core/group.h
init.o: ../../../../winix/winixd/core/loadavg.h
init.o: ../../../../winix/winixd/core/image.h
init.o: ../../../../winix/winixd/core/threadmanager.h
init.o: ../../../../winix/winixd/core/timezones.h
init.o: ../../../../winix/winixd/core/timezone.h
init.o: ../../../../winix/winixd/core/sessionmanager.h
init.o: ../../../../winix/winixd/core/sessioncontainer.h
init.o: ../../../../winix/winixd/core/ipbancontainer.h
init.o: ../../../../winix/winixd/core/sessionidmanager.h
init.o: ../../../../tito/src/base64.h ../../../../tito/src/aes.h
init.o: ../../../../winix/winixd/functions/functions.h
init.o: ../../../../winix/winixd/functions/functionbase.h
init.o: ../../../../winix/winixd/core/request.h
init.o: ../../../../winix/winixd/core/system.h
init.o: ../../../../winix/winixd/core/synchro.h
init.o: ../../../../winix/winixd/functions/functionparser.h
init.o: ../../../../winix/winixd/core/cur.h
init.o: ../../../../winix/winixd/functions/account.h
init.o: ../../../../winix/winixd/functions/adduser.h
init.o: ../../../../winix/winixd/functions/cat.h
init.o: ../../../../winix/winixd/functions/chmod.h
init.o: ../../../../winix/winixd/functions/privchanger.h
init.o: ../../../../winix/winixd/functions/chown.h
init.o: ../../../../winix/winixd/functions/ckeditor.h
init.o: ../../../../winix/winixd/functions/cp.h
init.o: ../../../../winix/winixd/functions/default.h
init.o: ../../../../winix/winixd/functions/download.h
init.o: ../../../../winix/winixd/functions/emacs.h
init.o: ../../../../winix/winixd/functions/env.h
init.o: ../../../../winix/winixd/functions/imgcrop.h
init.o: ../../../../winix/winixd/functions/last.h
init.o: ../../../../winix/winixd/functions/login.h
init.o: ../../../../winix/winixd/functions/logout.h
init.o: ../../../../winix/winixd/functions/ln.h
init.o: ../../../../winix/winixd/functions/ls.h
init.o: ../../../../winix/winixd/functions/man.h
init.o: ../../../../winix/winixd/functions/meta.h
init.o: ../../../../winix/winixd/functions/mkdir.h
init.o: ../../../../winix/winixd/functions/mv.h
init.o: ../../../../winix/winixd/functions/nicedit.h
init.o: ../../../../winix/winixd/functions/node.h
init.o: ../../../../winix/winixd/functions/passwd.h
init.o: ../../../../winix/winixd/functions/priv.h
init.o: ../../../../winix/winixd/functions/pw.h
init.o: ../../../../winix/winixd/functions/reload.h
init.o: ../../../../winix/winixd/functions/rm.h
init.o: ../../../../winix/winixd/functions/rmuser.h
init.o: ../../../../winix/winixd/functions/sort.h
init.o: ../../../../winix/winixd/functions/specialdefault.h
init.o: ../../../../winix/winixd/functions/stat.h
init.o: ../../../../winix/winixd/functions/subject.h
init.o: ../../../../winix/winixd/functions/template.h
init.o: ../../../../winix/winixd/functions/tinymce.h
init.o: ../../../../winix/winixd/functions/uname.h
init.o: ../../../../winix/winixd/functions/upload.h
init.o: ../../../../winix/winixd/functions/uptime.h
init.o: ../../../../winix/winixd/functions/who.h
init.o: ../../../../winix/winixd/functions/vim.h
init.o: ../../../../winix/winixd/core/htmlfilter.h
init.o: ../../../../winix/winixd/templates/templates.h
init.o: ../../../../winix/winixd/templates/patterncacher.h
init.o: ../../../../winix/winixd/templates/indexpatterns.h
init.o: ../../../../winix/winixd/templates/patterns.h
init.o: ../../../../winix/winixd/templates/changepatterns.h
init.o: ../../../../winix/winixd/templates/htmltextstream.h
init.o: ../../../../winix/winixd/core/sessionmanager.h exportthread.h
init.o: message.h exportinfo.h export.h edb.h
init.o: ../../../../winix/winixd/db/dbbase.h
init.o: ../../../../winix/winixd/db/dbconn.h
init.o: ../../../../winix/winixd/db/dbtextstream.h
init.o: ../../../../winix/winixd/core/error.h
init.o: ../../../../winix/winixd/core/dirs.h funexport.h
init.o: ../../../../winix/winixd/functions/functionbase.h

View File

@ -1,22 +1,27 @@
include Makefile.o.dep include Makefile.o.dep
current_path := $(shell pwd)
global_relative_working_dir := $(shell relative_path $(current_path) $(GLOBAL_WORKING_DIR))
winix_include_paths = -I$(global_relative_working_dir)/winix/winixd -I$(global_relative_working_dir)/ezc/src -I$(global_relative_working_dir)/tito/src -I$(global_relative_working_dir)/pikotools
name = gallery.so name = gallery.so
all: $(name) all: $(name)
$(name): $(o) $(name): $(o)
$(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $(LDFLAGS) *.o $(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(winix_include_paths) $(LDFLAGS) *.o
%.o: %.cpp %.o: %.cpp
$(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< $(CXX) -c $(CXXFLAGS) $(winix_include_paths) $<
depend: depend:
makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep makedepend -Y. $(winix_include_paths) -f- *.cpp > Makefile.dep
echo -n "o = " > Makefile.o.dep echo -n "o = " > Makefile.o.dep
ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep

View File

@ -1,252 +1,385 @@
# DO NOT DELETE # DO NOT DELETE
gallery.o: gallery.h ../../../winix/functions/functionbase.h gallery.o: gallery.h ../../../../winix/winixd/functions/functionbase.h
gallery.o: ../../../winix/core/item.h ../../../pikotools/space/space.h gallery.o: ../../../../winix/winixd/core/item.h
gallery.o: ../../../pikotools/textstream/types.h gallery.o: ../../../../pikotools/space/space.h
gallery.o: ../../../pikotools/date/date.h ../../../winix/db/db.h gallery.o: ../../../../pikotools/textstream/types.h
gallery.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h gallery.o: ../../../../pikotools/date/date.h ../../../../winix/winixd/db/db.h
gallery.o: ../../../winix/db/dbtextstream.h ../../../winix/core/textstream.h gallery.o: ../../../../winix/winixd/db/dbbase.h
gallery.o: ../../../winix/core/misc.h ../../../winix/core/item.h gallery.o: ../../../../winix/winixd/db/dbconn.h
gallery.o: ../../../winix/core/requesttypes.h gallery.o: ../../../../winix/winixd/db/dbtextstream.h
gallery.o: ../../../pikotools/textstream/textstream.h gallery.o: ../../../../winix/winixd/core/textstream.h
gallery.o: ../../../pikotools/convert/convert.h gallery.o: ../../../../winix/winixd/core/misc.h
gallery.o: ../../../pikotools/convert/inttostr.h gallery.o: ../../../../winix/winixd/core/item.h
gallery.o: ../../../pikotools/membuffer/membuffer.h gallery.o: ../../../../winix/winixd/core/requesttypes.h
gallery.o: ../../../pikotools/textstream/types.h gallery.o: ../../../../pikotools/textstream/textstream.h
gallery.o: ../../../pikotools/utf8/utf8.h ../../../winix/core/winix_const.h gallery.o: ../../../../pikotools/convert/convert.h
gallery.o: ../../../winix/core/error.h ../../../pikotools/space/spaceparser.h gallery.o: ../../../../pikotools/convert/inttostr.h
gallery.o: ../../../pikotools/space/space.h ../../../winix/db/dbitemquery.h gallery.o: ../../../../pikotools/membuffer/membuffer.h
gallery.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h gallery.o: ../../../../pikotools/textstream/types.h
gallery.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h gallery.o: ../../../../pikotools/utf8/utf8.h
gallery.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h gallery.o: ../../../../winix/winixd/core/winix_const.h
gallery.o: ../../../winix/core/textstream.h gallery.o: ../../../../winix/winixd/core/error.h
gallery.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h gallery.o: ../../../../pikotools/space/spaceparser.h
gallery.o: ../../../winix/core/cur.h ../../../winix/core/request.h gallery.o: ../../../../pikotools/space/space.h
gallery.o: ../../../winix/core/error.h ../../../winix/core/config.h gallery.o: ../../../../winix/winixd/db/dbitemquery.h
gallery.o: ../../../winix/core/htmlfilter.h gallery.o: ../../../../winix/winixd/db/dbitemcolumns.h
gallery.o: ../../../winix/templates/htmltextstream.h gallery.o: ../../../../winix/winixd/core/user.h
gallery.o: ../../../pikotools/space/spacetojson.h gallery.o: ../../../../winix/winixd/core/group.h
gallery.o: ../../../ezc/src/outstreams.h ../../../winix/core/session.h gallery.o: ../../../../winix/winixd/core/dircontainer.h
gallery.o: ../../../winix/core/user.h ../../../winix/core/plugindata.h gallery.o: ../../../../winix/winixd/core/ugcontainer.h
gallery.o: ../../../winix/core/rebus.h ../../../winix/core/ipban.h gallery.o: ../../../../winix/winixd/core/log.h
gallery.o: ../../../winix/core/mount.h ../../../winix/templates/locale.h gallery.o: ../../../../winix/winixd/core/textstream.h
gallery.o: ../../../winix/core/request.h ../../../winix/core/config.h gallery.o: ../../../../winix/winixd/core/logmanipulators.h
gallery.o: ../../../winix/core/system.h ../../../winix/core/job.h gallery.o: ../../../../winix/winixd/core/slog.h
gallery.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h gallery.o: ../../../../winix/winixd/core/cur.h
gallery.o: ../../../winix/core/dirs.h ../../../winix/core/dircontainer.h gallery.o: ../../../../winix/winixd/core/request.h
gallery.o: ../../../winix/notify/notify.h ../../../winix/notify/notifypool.h gallery.o: ../../../../winix/winixd/core/error.h
gallery.o: ../../../winix/templates/patterns.h gallery.o: ../../../../winix/winixd/core/config.h
gallery.o: ../../../winix/templates/locale.h gallery.o: ../../../../winix/winixd/core/htmlfilter.h
gallery.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h gallery.o: ../../../../winix/winixd/templates/htmltextstream.h
gallery.o: ../../../ezc/src/generator.h ../../../ezc/src/blocks.h gallery.o: ../../../../pikotools/space/spacetojson.h
gallery.o: ../../../ezc/src/cache.h ../../../ezc/src/functions.h gallery.o: ../../../../ezc/src/outstreams.h
gallery.o: ../../../ezc/src/funinfo.h ../../../ezc/src/objects.h gallery.o: ../../../../winix/winixd/core/session.h
gallery.o: ../../../ezc/src/pattern.h ../../../ezc/src/patternparser.h gallery.o: ../../../../winix/winixd/core/user.h
gallery.o: ../../../winix/notify/notifythread.h gallery.o: ../../../../winix/winixd/core/plugindata.h
gallery.o: ../../../winix/core/basethread.h gallery.o: ../../../../winix/winixd/core/rebus.h
gallery.o: ../../../winix/notify/templatesnotify.h gallery.o: ../../../../winix/winixd/core/ipban.h
gallery.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h gallery.o: ../../../../winix/winixd/core/mount.h
gallery.o: ../../../winix/core/lastcontainer.h ../../../winix/core/mounts.h gallery.o: ../../../../winix/winixd/templates/locale.h
gallery.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h gallery.o: ../../../../winix/winixd/core/request.h
gallery.o: ../../../winix/core/run.h ../../../winix/core/users.h gallery.o: ../../../../winix/winixd/core/config.h
gallery.o: ../../../winix/core/groups.h ../../../winix/core/group.h gallery.o: ../../../../winix/winixd/core/system.h
gallery.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h gallery.o: ../../../../winix/winixd/core/job.h
gallery.o: ../../../winix/core/threadmanager.h gallery.o: ../../../../winix/winixd/core/basethread.h
gallery.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h gallery.o: ../../../../winix/winixd/core/synchro.h
gallery.o: ../../../winix/core/synchro.h galleryinfo.h gallery.o: ../../../../winix/winixd/core/dirs.h
galleryinfo.o: galleryinfo.h ../../../winix/core/item.h gallery.o: ../../../../winix/winixd/core/dircontainer.h
galleryinfo.o: ../../../pikotools/space/space.h gallery.o: ../../../../winix/winixd/notify/notify.h
galleryinfo.o: ../../../pikotools/textstream/types.h gallery.o: ../../../../winix/winixd/notify/notifypool.h
galleryinfo.o: ../../../pikotools/date/date.h gallery.o: ../../../../winix/winixd/templates/patterns.h
init.o: gallery.h ../../../winix/functions/functionbase.h gallery.o: ../../../../winix/winixd/templates/locale.h
init.o: ../../../winix/core/item.h ../../../pikotools/space/space.h gallery.o: ../../../../winix/winixd/templates/localefilter.h
init.o: ../../../pikotools/textstream/types.h ../../../pikotools/date/date.h gallery.o: ../../../../ezc/src/ezc.h ../../../../ezc/src/generator.h
init.o: ../../../winix/db/db.h ../../../winix/db/dbbase.h gallery.o: ../../../../ezc/src/blocks.h ../../../../ezc/src/cache.h
init.o: ../../../winix/db/dbconn.h ../../../winix/db/dbtextstream.h gallery.o: ../../../../ezc/src/functions.h ../../../../ezc/src/funinfo.h
init.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h gallery.o: ../../../../ezc/src/objects.h ../../../../ezc/src/pattern.h
init.o: ../../../winix/core/item.h ../../../winix/core/requesttypes.h gallery.o: ../../../../ezc/src/patternparser.h
init.o: ../../../pikotools/textstream/textstream.h gallery.o: ../../../../winix/winixd/notify/notifythread.h
init.o: ../../../pikotools/convert/convert.h gallery.o: ../../../../winix/winixd/core/basethread.h
init.o: ../../../pikotools/convert/inttostr.h gallery.o: ../../../../winix/winixd/notify/templatesnotify.h
init.o: ../../../pikotools/membuffer/membuffer.h gallery.o: ../../../../winix/winixd/core/users.h
init.o: ../../../pikotools/textstream/types.h ../../../pikotools/utf8/utf8.h gallery.o: ../../../../winix/winixd/core/ugcontainer.h
init.o: ../../../winix/core/winix_const.h ../../../winix/core/error.h gallery.o: ../../../../winix/winixd/core/lastcontainer.h
init.o: ../../../pikotools/space/spaceparser.h gallery.o: ../../../../winix/winixd/core/mounts.h
init.o: ../../../pikotools/space/space.h ../../../winix/db/dbitemquery.h gallery.o: ../../../../winix/winixd/core/mountparser.h
init.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h gallery.o: ../../../../winix/winixd/core/crypt.h
init.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h gallery.o: ../../../../winix/winixd/core/run.h
init.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h gallery.o: ../../../../winix/winixd/core/users.h
init.o: ../../../winix/core/textstream.h gallery.o: ../../../../winix/winixd/core/groups.h
init.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h gallery.o: ../../../../winix/winixd/core/group.h
init.o: ../../../winix/core/cur.h ../../../winix/core/request.h gallery.o: ../../../../winix/winixd/core/loadavg.h
init.o: ../../../winix/core/error.h ../../../winix/core/config.h gallery.o: ../../../../winix/winixd/core/image.h
init.o: ../../../winix/core/htmlfilter.h gallery.o: ../../../../winix/winixd/core/threadmanager.h
init.o: ../../../winix/templates/htmltextstream.h gallery.o: ../../../../winix/winixd/core/timezones.h
init.o: ../../../pikotools/space/spacetojson.h ../../../ezc/src/outstreams.h gallery.o: ../../../../winix/winixd/core/timezone.h
init.o: ../../../winix/core/session.h ../../../winix/core/user.h gallery.o: ../../../../winix/winixd/core/synchro.h galleryinfo.h
init.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h galleryinfo.o: galleryinfo.h ../../../../winix/winixd/core/item.h
init.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h galleryinfo.o: ../../../../pikotools/space/space.h
init.o: ../../../winix/templates/locale.h ../../../winix/core/request.h galleryinfo.o: ../../../../pikotools/textstream/types.h
init.o: ../../../winix/core/config.h ../../../winix/core/system.h galleryinfo.o: ../../../../pikotools/date/date.h
init.o: ../../../winix/core/job.h ../../../winix/core/basethread.h init.o: gallery.h ../../../../winix/winixd/functions/functionbase.h
init.o: ../../../winix/core/synchro.h ../../../winix/core/dirs.h init.o: ../../../../winix/winixd/core/item.h
init.o: ../../../winix/core/dircontainer.h ../../../winix/notify/notify.h init.o: ../../../../pikotools/space/space.h
init.o: ../../../winix/notify/notifypool.h init.o: ../../../../pikotools/textstream/types.h
init.o: ../../../winix/templates/patterns.h ../../../winix/templates/locale.h init.o: ../../../../pikotools/date/date.h ../../../../winix/winixd/db/db.h
init.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h init.o: ../../../../winix/winixd/db/dbbase.h
init.o: ../../../ezc/src/generator.h ../../../ezc/src/blocks.h init.o: ../../../../winix/winixd/db/dbconn.h
init.o: ../../../ezc/src/cache.h ../../../ezc/src/functions.h init.o: ../../../../winix/winixd/db/dbtextstream.h
init.o: ../../../ezc/src/funinfo.h ../../../ezc/src/objects.h init.o: ../../../../winix/winixd/core/textstream.h
init.o: ../../../ezc/src/pattern.h ../../../ezc/src/patternparser.h init.o: ../../../../winix/winixd/core/misc.h
init.o: ../../../winix/notify/notifythread.h ../../../winix/core/basethread.h init.o: ../../../../winix/winixd/core/item.h
init.o: ../../../winix/notify/templatesnotify.h ../../../winix/core/users.h init.o: ../../../../winix/winixd/core/requesttypes.h
init.o: ../../../winix/core/ugcontainer.h ../../../winix/core/lastcontainer.h init.o: ../../../../pikotools/textstream/textstream.h
init.o: ../../../winix/core/mounts.h ../../../winix/core/mountparser.h init.o: ../../../../pikotools/convert/convert.h
init.o: ../../../winix/core/crypt.h ../../../winix/core/run.h init.o: ../../../../pikotools/convert/inttostr.h
init.o: ../../../winix/core/users.h ../../../winix/core/groups.h init.o: ../../../../pikotools/membuffer/membuffer.h
init.o: ../../../winix/core/group.h ../../../winix/core/loadavg.h init.o: ../../../../pikotools/textstream/types.h
init.o: ../../../winix/core/image.h ../../../winix/core/threadmanager.h init.o: ../../../../pikotools/utf8/utf8.h
init.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h init.o: ../../../../winix/winixd/core/winix_const.h
init.o: ../../../winix/core/synchro.h galleryinfo.h ../../../winix/core/log.h init.o: ../../../../winix/winixd/core/error.h
init.o: ../../../winix/core/plugin.h ../../../winix/core/pluginmsg.h init.o: ../../../../pikotools/space/spaceparser.h
init.o: ../../../winix/core/system.h ../../../winix/core/sessionmanager.h init.o: ../../../../pikotools/space/space.h
init.o: ../../../winix/core/sessioncontainer.h init.o: ../../../../winix/winixd/db/dbitemquery.h
init.o: ../../../winix/core/ipbancontainer.h init.o: ../../../../winix/winixd/db/dbitemcolumns.h
init.o: ../../../winix/core/sessionidmanager.h ../../../tito/src/base64.h init.o: ../../../../winix/winixd/core/user.h
init.o: ../../../tito/src/aes.h ../../../winix/functions/functions.h init.o: ../../../../winix/winixd/core/group.h
init.o: ../../../winix/functions/functionbase.h init.o: ../../../../winix/winixd/core/dircontainer.h
init.o: ../../../winix/functions/functionparser.h ../../../winix/core/cur.h init.o: ../../../../winix/winixd/core/ugcontainer.h
init.o: ../../../winix/functions/account.h ../../../winix/functions/adduser.h init.o: ../../../../winix/winixd/core/log.h
init.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h init.o: ../../../../winix/winixd/core/textstream.h
init.o: ../../../winix/functions/privchanger.h init.o: ../../../../winix/winixd/core/logmanipulators.h
init.o: ../../../winix/functions/chown.h ../../../winix/functions/ckeditor.h init.o: ../../../../winix/winixd/core/slog.h
init.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h init.o: ../../../../winix/winixd/core/cur.h
init.o: ../../../winix/functions/download.h ../../../winix/functions/emacs.h init.o: ../../../../winix/winixd/core/request.h
init.o: ../../../winix/functions/env.h ../../../winix/functions/imgcrop.h init.o: ../../../../winix/winixd/core/error.h
init.o: ../../../winix/functions/last.h ../../../winix/functions/login.h init.o: ../../../../winix/winixd/core/config.h
init.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h init.o: ../../../../winix/winixd/core/htmlfilter.h
init.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h init.o: ../../../../winix/winixd/templates/htmltextstream.h
init.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h init.o: ../../../../pikotools/space/spacetojson.h
init.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h init.o: ../../../../ezc/src/outstreams.h
init.o: ../../../winix/functions/node.h ../../../winix/functions/passwd.h init.o: ../../../../winix/winixd/core/session.h
init.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h init.o: ../../../../winix/winixd/core/user.h
init.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h init.o: ../../../../winix/winixd/core/plugindata.h
init.o: ../../../winix/functions/rmuser.h ../../../winix/functions/sort.h init.o: ../../../../winix/winixd/core/rebus.h
init.o: ../../../winix/functions/specialdefault.h init.o: ../../../../winix/winixd/core/ipban.h
init.o: ../../../winix/functions/stat.h ../../../winix/functions/subject.h init.o: ../../../../winix/winixd/core/mount.h
init.o: ../../../winix/functions/template.h init.o: ../../../../winix/winixd/templates/locale.h
init.o: ../../../winix/functions/tinymce.h ../../../winix/functions/uname.h init.o: ../../../../winix/winixd/core/request.h
init.o: ../../../winix/functions/upload.h ../../../winix/functions/uptime.h init.o: ../../../../winix/winixd/core/config.h
init.o: ../../../winix/functions/who.h ../../../winix/functions/vim.h init.o: ../../../../winix/winixd/core/system.h
init.o: ../../../winix/core/htmlfilter.h ../../../winix/templates/templates.h init.o: ../../../../winix/winixd/core/job.h
init.o: ../../../winix/templates/patterncacher.h init.o: ../../../../winix/winixd/core/basethread.h
init.o: ../../../winix/templates/indexpatterns.h init.o: ../../../../winix/winixd/core/synchro.h
init.o: ../../../winix/templates/patterns.h init.o: ../../../../winix/winixd/core/dirs.h
init.o: ../../../winix/templates/changepatterns.h init.o: ../../../../winix/winixd/core/dircontainer.h
init.o: ../../../winix/templates/htmltextstream.h init.o: ../../../../winix/winixd/notify/notify.h
init.o: ../../../winix/core/sessionmanager.h init.o: ../../../../winix/winixd/notify/notifypool.h
templates.o: gallery.h ../../../winix/functions/functionbase.h init.o: ../../../../winix/winixd/templates/patterns.h
templates.o: ../../../winix/core/item.h ../../../pikotools/space/space.h init.o: ../../../../winix/winixd/templates/locale.h
templates.o: ../../../pikotools/textstream/types.h init.o: ../../../../winix/winixd/templates/localefilter.h
templates.o: ../../../pikotools/date/date.h ../../../winix/db/db.h init.o: ../../../../ezc/src/ezc.h ../../../../ezc/src/generator.h
templates.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h init.o: ../../../../ezc/src/blocks.h ../../../../ezc/src/cache.h
templates.o: ../../../winix/db/dbtextstream.h init.o: ../../../../ezc/src/functions.h ../../../../ezc/src/funinfo.h
templates.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h init.o: ../../../../ezc/src/objects.h ../../../../ezc/src/pattern.h
templates.o: ../../../winix/core/item.h ../../../winix/core/requesttypes.h init.o: ../../../../ezc/src/patternparser.h
templates.o: ../../../pikotools/textstream/textstream.h init.o: ../../../../winix/winixd/notify/notifythread.h
templates.o: ../../../pikotools/convert/convert.h init.o: ../../../../winix/winixd/core/basethread.h
templates.o: ../../../pikotools/convert/inttostr.h init.o: ../../../../winix/winixd/notify/templatesnotify.h
templates.o: ../../../pikotools/membuffer/membuffer.h init.o: ../../../../winix/winixd/core/users.h
templates.o: ../../../pikotools/textstream/types.h init.o: ../../../../winix/winixd/core/ugcontainer.h
templates.o: ../../../pikotools/utf8/utf8.h ../../../winix/core/winix_const.h init.o: ../../../../winix/winixd/core/lastcontainer.h
templates.o: ../../../winix/core/error.h init.o: ../../../../winix/winixd/core/mounts.h
templates.o: ../../../pikotools/space/spaceparser.h init.o: ../../../../winix/winixd/core/mountparser.h
templates.o: ../../../pikotools/space/space.h ../../../winix/db/dbitemquery.h init.o: ../../../../winix/winixd/core/crypt.h
templates.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h init.o: ../../../../winix/winixd/core/run.h
templates.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h init.o: ../../../../winix/winixd/core/users.h
templates.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h init.o: ../../../../winix/winixd/core/groups.h
templates.o: ../../../winix/core/textstream.h init.o: ../../../../winix/winixd/core/group.h
templates.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h init.o: ../../../../winix/winixd/core/loadavg.h
templates.o: ../../../winix/core/cur.h ../../../winix/core/request.h init.o: ../../../../winix/winixd/core/image.h
templates.o: ../../../winix/core/error.h ../../../winix/core/config.h init.o: ../../../../winix/winixd/core/threadmanager.h
templates.o: ../../../winix/core/htmlfilter.h init.o: ../../../../winix/winixd/core/timezones.h
templates.o: ../../../winix/templates/htmltextstream.h init.o: ../../../../winix/winixd/core/timezone.h
templates.o: ../../../pikotools/space/spacetojson.h init.o: ../../../../winix/winixd/core/synchro.h galleryinfo.h
templates.o: ../../../ezc/src/outstreams.h ../../../winix/core/session.h init.o: ../../../../winix/winixd/core/log.h
templates.o: ../../../winix/core/user.h ../../../winix/core/plugindata.h init.o: ../../../../winix/winixd/core/plugin.h
templates.o: ../../../winix/core/rebus.h ../../../winix/core/ipban.h init.o: ../../../../winix/winixd/core/pluginmsg.h
templates.o: ../../../winix/core/mount.h ../../../winix/templates/locale.h init.o: ../../../../winix/winixd/core/system.h
templates.o: ../../../winix/core/request.h ../../../winix/core/config.h init.o: ../../../../winix/winixd/core/sessionmanager.h
templates.o: ../../../winix/core/system.h ../../../winix/core/job.h init.o: ../../../../winix/winixd/core/sessioncontainer.h
templates.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h init.o: ../../../../winix/winixd/core/ipbancontainer.h
templates.o: ../../../winix/core/dirs.h ../../../winix/core/dircontainer.h init.o: ../../../../winix/winixd/core/sessionidmanager.h
templates.o: ../../../winix/notify/notify.h init.o: ../../../../tito/src/base64.h ../../../../tito/src/aes.h
templates.o: ../../../winix/notify/notifypool.h init.o: ../../../../winix/winixd/functions/functions.h
templates.o: ../../../winix/templates/patterns.h init.o: ../../../../winix/winixd/functions/functionbase.h
templates.o: ../../../winix/templates/locale.h init.o: ../../../../winix/winixd/functions/functionparser.h
templates.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h init.o: ../../../../winix/winixd/core/cur.h
templates.o: ../../../ezc/src/generator.h ../../../ezc/src/blocks.h init.o: ../../../../winix/winixd/functions/account.h
templates.o: ../../../ezc/src/cache.h ../../../ezc/src/functions.h init.o: ../../../../winix/winixd/functions/adduser.h
templates.o: ../../../ezc/src/funinfo.h ../../../ezc/src/objects.h init.o: ../../../../winix/winixd/functions/cat.h
templates.o: ../../../ezc/src/pattern.h ../../../ezc/src/patternparser.h init.o: ../../../../winix/winixd/functions/chmod.h
templates.o: ../../../winix/notify/notifythread.h init.o: ../../../../winix/winixd/functions/privchanger.h
templates.o: ../../../winix/core/basethread.h init.o: ../../../../winix/winixd/functions/chown.h
templates.o: ../../../winix/notify/templatesnotify.h init.o: ../../../../winix/winixd/functions/ckeditor.h
templates.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h init.o: ../../../../winix/winixd/functions/cp.h
templates.o: ../../../winix/core/lastcontainer.h ../../../winix/core/mounts.h init.o: ../../../../winix/winixd/functions/default.h
templates.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h init.o: ../../../../winix/winixd/functions/download.h
templates.o: ../../../winix/core/run.h ../../../winix/core/users.h init.o: ../../../../winix/winixd/functions/emacs.h
templates.o: ../../../winix/core/groups.h ../../../winix/core/group.h init.o: ../../../../winix/winixd/functions/env.h
templates.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h init.o: ../../../../winix/winixd/functions/imgcrop.h
templates.o: ../../../winix/core/threadmanager.h init.o: ../../../../winix/winixd/functions/last.h
templates.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h init.o: ../../../../winix/winixd/functions/login.h
templates.o: ../../../winix/core/synchro.h galleryinfo.h init.o: ../../../../winix/winixd/functions/logout.h
templates.o: ../../../winix/core/misc.h ../../../winix/core/plugin.h init.o: ../../../../winix/winixd/functions/ln.h
templates.o: ../../../winix/core/pluginmsg.h ../../../winix/core/system.h init.o: ../../../../winix/winixd/functions/ls.h
templates.o: ../../../winix/core/sessionmanager.h init.o: ../../../../winix/winixd/functions/man.h
templates.o: ../../../winix/core/sessioncontainer.h init.o: ../../../../winix/winixd/functions/meta.h
templates.o: ../../../winix/core/ipbancontainer.h init.o: ../../../../winix/winixd/functions/mkdir.h
templates.o: ../../../winix/core/sessionidmanager.h init.o: ../../../../winix/winixd/functions/mv.h
templates.o: ../../../tito/src/base64.h ../../../tito/src/aes.h init.o: ../../../../winix/winixd/functions/nicedit.h
templates.o: ../../../winix/functions/functions.h init.o: ../../../../winix/winixd/functions/node.h
templates.o: ../../../winix/functions/functionbase.h init.o: ../../../../winix/winixd/functions/passwd.h
templates.o: ../../../winix/functions/functionparser.h init.o: ../../../../winix/winixd/functions/priv.h
templates.o: ../../../winix/core/cur.h ../../../winix/functions/account.h init.o: ../../../../winix/winixd/functions/pw.h
templates.o: ../../../winix/functions/adduser.h init.o: ../../../../winix/winixd/functions/reload.h
templates.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h init.o: ../../../../winix/winixd/functions/rm.h
templates.o: ../../../winix/functions/privchanger.h init.o: ../../../../winix/winixd/functions/rmuser.h
templates.o: ../../../winix/functions/chown.h init.o: ../../../../winix/winixd/functions/sort.h
templates.o: ../../../winix/functions/ckeditor.h init.o: ../../../../winix/winixd/functions/specialdefault.h
templates.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h init.o: ../../../../winix/winixd/functions/stat.h
templates.o: ../../../winix/functions/download.h init.o: ../../../../winix/winixd/functions/subject.h
templates.o: ../../../winix/functions/emacs.h ../../../winix/functions/env.h init.o: ../../../../winix/winixd/functions/template.h
templates.o: ../../../winix/functions/imgcrop.h init.o: ../../../../winix/winixd/functions/tinymce.h
templates.o: ../../../winix/functions/last.h ../../../winix/functions/login.h init.o: ../../../../winix/winixd/functions/uname.h
templates.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h init.o: ../../../../winix/winixd/functions/upload.h
templates.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h init.o: ../../../../winix/winixd/functions/uptime.h
templates.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h init.o: ../../../../winix/winixd/functions/who.h
templates.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h init.o: ../../../../winix/winixd/functions/vim.h
templates.o: ../../../winix/functions/node.h init.o: ../../../../winix/winixd/core/htmlfilter.h
templates.o: ../../../winix/functions/passwd.h init.o: ../../../../winix/winixd/templates/templates.h
templates.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h init.o: ../../../../winix/winixd/templates/patterncacher.h
templates.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h init.o: ../../../../winix/winixd/templates/indexpatterns.h
templates.o: ../../../winix/functions/rmuser.h init.o: ../../../../winix/winixd/templates/patterns.h
templates.o: ../../../winix/functions/sort.h init.o: ../../../../winix/winixd/templates/changepatterns.h
templates.o: ../../../winix/functions/specialdefault.h init.o: ../../../../winix/winixd/templates/htmltextstream.h
templates.o: ../../../winix/functions/stat.h init.o: ../../../../winix/winixd/core/sessionmanager.h
templates.o: ../../../winix/functions/subject.h templates.o: gallery.h ../../../../winix/winixd/functions/functionbase.h
templates.o: ../../../winix/functions/template.h templates.o: ../../../../winix/winixd/core/item.h
templates.o: ../../../winix/functions/tinymce.h templates.o: ../../../../pikotools/space/space.h
templates.o: ../../../winix/functions/uname.h templates.o: ../../../../pikotools/textstream/types.h
templates.o: ../../../winix/functions/upload.h templates.o: ../../../../pikotools/date/date.h
templates.o: ../../../winix/functions/uptime.h ../../../winix/functions/who.h templates.o: ../../../../winix/winixd/db/db.h
templates.o: ../../../winix/functions/vim.h ../../../winix/core/htmlfilter.h templates.o: ../../../../winix/winixd/db/dbbase.h
templates.o: ../../../winix/templates/templates.h templates.o: ../../../../winix/winixd/db/dbconn.h
templates.o: ../../../winix/templates/patterncacher.h templates.o: ../../../../winix/winixd/db/dbtextstream.h
templates.o: ../../../winix/templates/indexpatterns.h templates.o: ../../../../winix/winixd/core/textstream.h
templates.o: ../../../winix/templates/patterns.h templates.o: ../../../../winix/winixd/core/misc.h
templates.o: ../../../winix/templates/changepatterns.h templates.o: ../../../../winix/winixd/core/item.h
templates.o: ../../../winix/templates/htmltextstream.h templates.o: ../../../../winix/winixd/core/requesttypes.h
templates.o: ../../../winix/core/sessionmanager.h templates.o: ../../../../pikotools/textstream/textstream.h
templates.o: ../../../winix/templates/miscspace.h templates.o: ../../../../pikotools/convert/convert.h
templates.o: ../../../winix/templates/templates.h templates.o: ../../../../pikotools/convert/inttostr.h
templates.o: ../../../../pikotools/membuffer/membuffer.h
templates.o: ../../../../pikotools/textstream/types.h
templates.o: ../../../../pikotools/utf8/utf8.h
templates.o: ../../../../winix/winixd/core/winix_const.h
templates.o: ../../../../winix/winixd/core/error.h
templates.o: ../../../../pikotools/space/spaceparser.h
templates.o: ../../../../pikotools/space/space.h
templates.o: ../../../../winix/winixd/db/dbitemquery.h
templates.o: ../../../../winix/winixd/db/dbitemcolumns.h
templates.o: ../../../../winix/winixd/core/user.h
templates.o: ../../../../winix/winixd/core/group.h
templates.o: ../../../../winix/winixd/core/dircontainer.h
templates.o: ../../../../winix/winixd/core/ugcontainer.h
templates.o: ../../../../winix/winixd/core/log.h
templates.o: ../../../../winix/winixd/core/textstream.h
templates.o: ../../../../winix/winixd/core/logmanipulators.h
templates.o: ../../../../winix/winixd/core/slog.h
templates.o: ../../../../winix/winixd/core/cur.h
templates.o: ../../../../winix/winixd/core/request.h
templates.o: ../../../../winix/winixd/core/error.h
templates.o: ../../../../winix/winixd/core/config.h
templates.o: ../../../../winix/winixd/core/htmlfilter.h
templates.o: ../../../../winix/winixd/templates/htmltextstream.h
templates.o: ../../../../pikotools/space/spacetojson.h
templates.o: ../../../../ezc/src/outstreams.h
templates.o: ../../../../winix/winixd/core/session.h
templates.o: ../../../../winix/winixd/core/user.h
templates.o: ../../../../winix/winixd/core/plugindata.h
templates.o: ../../../../winix/winixd/core/rebus.h
templates.o: ../../../../winix/winixd/core/ipban.h
templates.o: ../../../../winix/winixd/core/mount.h
templates.o: ../../../../winix/winixd/templates/locale.h
templates.o: ../../../../winix/winixd/core/request.h
templates.o: ../../../../winix/winixd/core/config.h
templates.o: ../../../../winix/winixd/core/system.h
templates.o: ../../../../winix/winixd/core/job.h
templates.o: ../../../../winix/winixd/core/basethread.h
templates.o: ../../../../winix/winixd/core/synchro.h
templates.o: ../../../../winix/winixd/core/dirs.h
templates.o: ../../../../winix/winixd/core/dircontainer.h
templates.o: ../../../../winix/winixd/notify/notify.h
templates.o: ../../../../winix/winixd/notify/notifypool.h
templates.o: ../../../../winix/winixd/templates/patterns.h
templates.o: ../../../../winix/winixd/templates/locale.h
templates.o: ../../../../winix/winixd/templates/localefilter.h
templates.o: ../../../../ezc/src/ezc.h ../../../../ezc/src/generator.h
templates.o: ../../../../ezc/src/blocks.h ../../../../ezc/src/cache.h
templates.o: ../../../../ezc/src/functions.h ../../../../ezc/src/funinfo.h
templates.o: ../../../../ezc/src/objects.h ../../../../ezc/src/pattern.h
templates.o: ../../../../ezc/src/patternparser.h
templates.o: ../../../../winix/winixd/notify/notifythread.h
templates.o: ../../../../winix/winixd/core/basethread.h
templates.o: ../../../../winix/winixd/notify/templatesnotify.h
templates.o: ../../../../winix/winixd/core/users.h
templates.o: ../../../../winix/winixd/core/ugcontainer.h
templates.o: ../../../../winix/winixd/core/lastcontainer.h
templates.o: ../../../../winix/winixd/core/mounts.h
templates.o: ../../../../winix/winixd/core/mountparser.h
templates.o: ../../../../winix/winixd/core/crypt.h
templates.o: ../../../../winix/winixd/core/run.h
templates.o: ../../../../winix/winixd/core/users.h
templates.o: ../../../../winix/winixd/core/groups.h
templates.o: ../../../../winix/winixd/core/group.h
templates.o: ../../../../winix/winixd/core/loadavg.h
templates.o: ../../../../winix/winixd/core/image.h
templates.o: ../../../../winix/winixd/core/threadmanager.h
templates.o: ../../../../winix/winixd/core/timezones.h
templates.o: ../../../../winix/winixd/core/timezone.h
templates.o: ../../../../winix/winixd/core/synchro.h galleryinfo.h
templates.o: ../../../../winix/winixd/core/misc.h
templates.o: ../../../../winix/winixd/core/plugin.h
templates.o: ../../../../winix/winixd/core/pluginmsg.h
templates.o: ../../../../winix/winixd/core/system.h
templates.o: ../../../../winix/winixd/core/sessionmanager.h
templates.o: ../../../../winix/winixd/core/sessioncontainer.h
templates.o: ../../../../winix/winixd/core/ipbancontainer.h
templates.o: ../../../../winix/winixd/core/sessionidmanager.h
templates.o: ../../../../tito/src/base64.h ../../../../tito/src/aes.h
templates.o: ../../../../winix/winixd/functions/functions.h
templates.o: ../../../../winix/winixd/functions/functionbase.h
templates.o: ../../../../winix/winixd/functions/functionparser.h
templates.o: ../../../../winix/winixd/core/cur.h
templates.o: ../../../../winix/winixd/functions/account.h
templates.o: ../../../../winix/winixd/functions/adduser.h
templates.o: ../../../../winix/winixd/functions/cat.h
templates.o: ../../../../winix/winixd/functions/chmod.h
templates.o: ../../../../winix/winixd/functions/privchanger.h
templates.o: ../../../../winix/winixd/functions/chown.h
templates.o: ../../../../winix/winixd/functions/ckeditor.h
templates.o: ../../../../winix/winixd/functions/cp.h
templates.o: ../../../../winix/winixd/functions/default.h
templates.o: ../../../../winix/winixd/functions/download.h
templates.o: ../../../../winix/winixd/functions/emacs.h
templates.o: ../../../../winix/winixd/functions/env.h
templates.o: ../../../../winix/winixd/functions/imgcrop.h
templates.o: ../../../../winix/winixd/functions/last.h
templates.o: ../../../../winix/winixd/functions/login.h
templates.o: ../../../../winix/winixd/functions/logout.h
templates.o: ../../../../winix/winixd/functions/ln.h
templates.o: ../../../../winix/winixd/functions/ls.h
templates.o: ../../../../winix/winixd/functions/man.h
templates.o: ../../../../winix/winixd/functions/meta.h
templates.o: ../../../../winix/winixd/functions/mkdir.h
templates.o: ../../../../winix/winixd/functions/mv.h
templates.o: ../../../../winix/winixd/functions/nicedit.h
templates.o: ../../../../winix/winixd/functions/node.h
templates.o: ../../../../winix/winixd/functions/passwd.h
templates.o: ../../../../winix/winixd/functions/priv.h
templates.o: ../../../../winix/winixd/functions/pw.h
templates.o: ../../../../winix/winixd/functions/reload.h
templates.o: ../../../../winix/winixd/functions/rm.h
templates.o: ../../../../winix/winixd/functions/rmuser.h
templates.o: ../../../../winix/winixd/functions/sort.h
templates.o: ../../../../winix/winixd/functions/specialdefault.h
templates.o: ../../../../winix/winixd/functions/stat.h
templates.o: ../../../../winix/winixd/functions/subject.h
templates.o: ../../../../winix/winixd/functions/template.h
templates.o: ../../../../winix/winixd/functions/tinymce.h
templates.o: ../../../../winix/winixd/functions/uname.h
templates.o: ../../../../winix/winixd/functions/upload.h
templates.o: ../../../../winix/winixd/functions/uptime.h
templates.o: ../../../../winix/winixd/functions/who.h
templates.o: ../../../../winix/winixd/functions/vim.h
templates.o: ../../../../winix/winixd/core/htmlfilter.h
templates.o: ../../../../winix/winixd/templates/templates.h
templates.o: ../../../../winix/winixd/templates/patterncacher.h
templates.o: ../../../../winix/winixd/templates/indexpatterns.h
templates.o: ../../../../winix/winixd/templates/patterns.h
templates.o: ../../../../winix/winixd/templates/changepatterns.h
templates.o: ../../../../winix/winixd/templates/htmltextstream.h
templates.o: ../../../../winix/winixd/core/sessionmanager.h
templates.o: ../../../../winix/winixd/templates/miscspace.h
templates.o: ../../../../winix/winixd/templates/templates.h

View File

@ -1,22 +1,27 @@
include Makefile.o.dep include Makefile.o.dep
current_path := $(shell pwd)
global_relative_working_dir := $(shell relative_path $(current_path) $(GLOBAL_WORKING_DIR))
winix_include_paths = -I$(global_relative_working_dir)/winix/winixd -I$(global_relative_working_dir)/ezc/src -I$(global_relative_working_dir)/tito/src -I$(global_relative_working_dir)/pikotools
name = group.so name = group.so
all: $(name) all: $(name)
$(name): $(o) $(name): $(o)
$(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $(LDFLAGS) *.o $(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(winix_include_paths) $(LDFLAGS) *.o
%.o: %.cpp %.o: %.cpp
$(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< $(CXX) -c $(CXXFLAGS) $(winix_include_paths) $<
depend: depend:
makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep makedepend -Y. $(winix_include_paths) -f- *.cpp > Makefile.dep
echo -n "o = " > Makefile.o.dep echo -n "o = " > Makefile.o.dep
ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep

View File

@ -1,248 +1,373 @@
# DO NOT DELETE # DO NOT DELETE
groupinfo.o: groupinfo.h groups.h ../../../pikotools/space/spaceparser.h groupinfo.o: groupinfo.h groups.h ../../../../pikotools/space/spaceparser.h
groupinfo.o: ../../../pikotools/space/space.h groupinfo.o: ../../../../pikotools/space/space.h
groupinfo.o: ../../../pikotools/textstream/types.h ../../../winix/core/item.h groupinfo.o: ../../../../pikotools/textstream/types.h
groupinfo.o: ../../../pikotools/space/space.h ../../../pikotools/date/date.h groupinfo.o: ../../../../winix/winixd/core/item.h
groupinfo.o: ../../../winix/core/system.h ../../../winix/core/job.h groupinfo.o: ../../../../pikotools/space/space.h
groupinfo.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h groupinfo.o: ../../../../pikotools/date/date.h
groupinfo.o: ../../../winix/core/dirs.h ../../../winix/core/item.h groupinfo.o: ../../../../winix/winixd/core/system.h
groupinfo.o: ../../../winix/core/dircontainer.h ../../../winix/db/db.h groupinfo.o: ../../../../winix/winixd/core/job.h
groupinfo.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h groupinfo.o: ../../../../winix/winixd/core/basethread.h
groupinfo.o: ../../../winix/db/dbtextstream.h groupinfo.o: ../../../../winix/winixd/core/synchro.h
groupinfo.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h groupinfo.o: ../../../../winix/winixd/core/dirs.h
groupinfo.o: ../../../winix/core/requesttypes.h groupinfo.o: ../../../../winix/winixd/core/item.h
groupinfo.o: ../../../pikotools/textstream/textstream.h groupinfo.o: ../../../../winix/winixd/core/dircontainer.h
groupinfo.o: ../../../pikotools/convert/convert.h groupinfo.o: ../../../../winix/winixd/db/db.h
groupinfo.o: ../../../pikotools/convert/inttostr.h groupinfo.o: ../../../../winix/winixd/db/dbbase.h
groupinfo.o: ../../../pikotools/membuffer/membuffer.h groupinfo.o: ../../../../winix/winixd/db/dbconn.h
groupinfo.o: ../../../pikotools/textstream/types.h groupinfo.o: ../../../../winix/winixd/db/dbtextstream.h
groupinfo.o: ../../../pikotools/utf8/utf8.h ../../../winix/core/winix_const.h groupinfo.o: ../../../../winix/winixd/core/textstream.h
groupinfo.o: ../../../winix/core/error.h ../../../winix/db/dbitemquery.h groupinfo.o: ../../../../winix/winixd/core/misc.h
groupinfo.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h groupinfo.o: ../../../../winix/winixd/core/requesttypes.h
groupinfo.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h groupinfo.o: ../../../../pikotools/textstream/textstream.h
groupinfo.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h groupinfo.o: ../../../../pikotools/convert/convert.h
groupinfo.o: ../../../winix/core/textstream.h groupinfo.o: ../../../../pikotools/convert/inttostr.h
groupinfo.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h groupinfo.o: ../../../../pikotools/membuffer/membuffer.h
groupinfo.o: ../../../winix/core/cur.h ../../../winix/core/request.h groupinfo.o: ../../../../pikotools/textstream/types.h
groupinfo.o: ../../../winix/core/error.h ../../../winix/core/config.h groupinfo.o: ../../../../pikotools/utf8/utf8.h
groupinfo.o: ../../../winix/core/htmlfilter.h groupinfo.o: ../../../../winix/winixd/core/winix_const.h
groupinfo.o: ../../../winix/templates/htmltextstream.h groupinfo.o: ../../../../winix/winixd/core/error.h
groupinfo.o: ../../../pikotools/space/spacetojson.h groupinfo.o: ../../../../winix/winixd/db/dbitemquery.h
groupinfo.o: ../../../ezc/src/outstreams.h ../../../winix/core/session.h groupinfo.o: ../../../../winix/winixd/db/dbitemcolumns.h
groupinfo.o: ../../../winix/core/user.h ../../../winix/core/plugindata.h groupinfo.o: ../../../../winix/winixd/core/user.h
groupinfo.o: ../../../winix/core/rebus.h ../../../winix/core/ipban.h groupinfo.o: ../../../../winix/winixd/core/group.h
groupinfo.o: ../../../winix/core/mount.h ../../../winix/templates/locale.h groupinfo.o: ../../../../winix/winixd/core/dircontainer.h
groupinfo.o: ../../../winix/notify/notify.h groupinfo.o: ../../../../winix/winixd/core/ugcontainer.h
groupinfo.o: ../../../winix/notify/notifypool.h groupinfo.o: ../../../../winix/winixd/core/log.h
groupinfo.o: ../../../winix/templates/patterns.h groupinfo.o: ../../../../winix/winixd/core/textstream.h
groupinfo.o: ../../../winix/templates/locale.h groupinfo.o: ../../../../winix/winixd/core/logmanipulators.h
groupinfo.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h groupinfo.o: ../../../../winix/winixd/core/slog.h
groupinfo.o: ../../../ezc/src/generator.h ../../../ezc/src/blocks.h groupinfo.o: ../../../../winix/winixd/core/cur.h
groupinfo.o: ../../../ezc/src/cache.h ../../../ezc/src/functions.h groupinfo.o: ../../../../winix/winixd/core/request.h
groupinfo.o: ../../../ezc/src/funinfo.h ../../../ezc/src/objects.h groupinfo.o: ../../../../winix/winixd/core/error.h
groupinfo.o: ../../../ezc/src/pattern.h ../../../ezc/src/patternparser.h groupinfo.o: ../../../../winix/winixd/core/config.h
groupinfo.o: ../../../winix/notify/notifythread.h groupinfo.o: ../../../../winix/winixd/core/htmlfilter.h
groupinfo.o: ../../../winix/core/basethread.h groupinfo.o: ../../../../winix/winixd/templates/htmltextstream.h
groupinfo.o: ../../../winix/notify/templatesnotify.h groupinfo.o: ../../../../pikotools/space/spacetojson.h
groupinfo.o: ../../../winix/core/config.h ../../../winix/core/users.h groupinfo.o: ../../../../ezc/src/outstreams.h
groupinfo.o: ../../../winix/core/ugcontainer.h groupinfo.o: ../../../../winix/winixd/core/session.h
groupinfo.o: ../../../winix/core/lastcontainer.h ../../../winix/core/mounts.h groupinfo.o: ../../../../winix/winixd/core/user.h
groupinfo.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h groupinfo.o: ../../../../winix/winixd/core/plugindata.h
groupinfo.o: ../../../winix/core/run.h ../../../winix/core/users.h groupinfo.o: ../../../../winix/winixd/core/rebus.h
groupinfo.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h groupinfo.o: ../../../../winix/winixd/core/ipban.h
groupinfo.o: ../../../winix/core/threadmanager.h groupinfo.o: ../../../../winix/winixd/core/mount.h
groupinfo.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h groupinfo.o: ../../../../winix/winixd/templates/locale.h
groupinfo.o: ../../../winix/core/log.h groupinfo.o: ../../../../winix/winixd/notify/notify.h
groups.o: groups.h ../../../pikotools/space/spaceparser.h groupinfo.o: ../../../../winix/winixd/notify/notifypool.h
groups.o: ../../../pikotools/space/space.h groupinfo.o: ../../../../winix/winixd/templates/patterns.h
groups.o: ../../../pikotools/textstream/types.h ../../../winix/core/log.h groupinfo.o: ../../../../winix/winixd/templates/locale.h
init.o: ../../../winix/core/log.h ../../../winix/core/plugin.h groupinfo.o: ../../../../winix/winixd/templates/localefilter.h
init.o: ../../../winix/core/pluginmsg.h ../../../winix/core/log.h groupinfo.o: ../../../../ezc/src/ezc.h ../../../../ezc/src/generator.h
init.o: ../../../winix/core/textstream.h groupinfo.o: ../../../../ezc/src/blocks.h ../../../../ezc/src/cache.h
init.o: ../../../winix/core/logmanipulators.h groupinfo.o: ../../../../ezc/src/functions.h ../../../../ezc/src/funinfo.h
init.o: ../../../pikotools/textstream/textstream.h groupinfo.o: ../../../../ezc/src/objects.h ../../../../ezc/src/pattern.h
init.o: ../../../pikotools/space/space.h ../../../pikotools/date/date.h groupinfo.o: ../../../../ezc/src/patternparser.h
init.o: ../../../pikotools/convert/convert.h groupinfo.o: ../../../../winix/winixd/notify/notifythread.h
init.o: ../../../pikotools/convert/inttostr.h groupinfo.o: ../../../../winix/winixd/core/basethread.h
init.o: ../../../pikotools/membuffer/membuffer.h groupinfo.o: ../../../../winix/winixd/notify/templatesnotify.h
init.o: ../../../pikotools/textstream/types.h ../../../winix/core/slog.h groupinfo.o: ../../../../winix/winixd/core/config.h
init.o: ../../../winix/core/cur.h ../../../winix/core/request.h groupinfo.o: ../../../../winix/winixd/core/users.h
init.o: ../../../winix/core/requesttypes.h ../../../winix/core/item.h groupinfo.o: ../../../../winix/winixd/core/ugcontainer.h
init.o: ../../../winix/core/error.h ../../../winix/core/config.h groupinfo.o: ../../../../winix/winixd/core/lastcontainer.h
init.o: ../../../pikotools/space/spaceparser.h groupinfo.o: ../../../../winix/winixd/core/mounts.h
init.o: ../../../pikotools/space/space.h groupinfo.o: ../../../../winix/winixd/core/mountparser.h
init.o: ../../../pikotools/textstream/types.h groupinfo.o: ../../../../winix/winixd/core/crypt.h
init.o: ../../../winix/core/htmlfilter.h groupinfo.o: ../../../../winix/winixd/core/run.h
init.o: ../../../winix/templates/htmltextstream.h groupinfo.o: ../../../../winix/winixd/core/users.h
init.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h groupinfo.o: ../../../../winix/winixd/core/loadavg.h
init.o: ../../../pikotools/utf8/utf8.h ../../../winix/core/winix_const.h groupinfo.o: ../../../../winix/winixd/core/image.h
init.o: ../../../pikotools/space/spacetojson.h ../../../ezc/src/outstreams.h groupinfo.o: ../../../../winix/winixd/core/threadmanager.h
init.o: ../../../winix/core/session.h ../../../winix/core/user.h groupinfo.o: ../../../../winix/winixd/core/timezones.h
init.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h groupinfo.o: ../../../../winix/winixd/core/timezone.h
init.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h groupinfo.o: ../../../../winix/winixd/core/log.h
init.o: ../../../winix/templates/locale.h ../../../winix/core/system.h groups.o: groups.h ../../../../pikotools/space/spaceparser.h
init.o: ../../../winix/core/job.h ../../../winix/core/basethread.h groups.o: ../../../../pikotools/space/space.h
init.o: ../../../winix/core/synchro.h ../../../winix/core/dirs.h groups.o: ../../../../pikotools/textstream/types.h
init.o: ../../../winix/core/dircontainer.h ../../../winix/db/db.h groups.o: ../../../../winix/winixd/core/log.h
init.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h init.o: ../../../../winix/winixd/core/log.h
init.o: ../../../winix/db/dbtextstream.h ../../../winix/core/error.h init.o: ../../../../winix/winixd/core/plugin.h
init.o: ../../../winix/db/dbitemquery.h ../../../winix/core/item.h init.o: ../../../../winix/winixd/core/pluginmsg.h
init.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h init.o: ../../../../winix/winixd/core/log.h
init.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h init.o: ../../../../winix/winixd/core/textstream.h
init.o: ../../../winix/core/ugcontainer.h ../../../winix/notify/notify.h init.o: ../../../../winix/winixd/core/logmanipulators.h
init.o: ../../../winix/notify/notifypool.h init.o: ../../../../pikotools/textstream/textstream.h
init.o: ../../../winix/templates/patterns.h ../../../winix/templates/locale.h init.o: ../../../../pikotools/space/space.h ../../../../pikotools/date/date.h
init.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h init.o: ../../../../pikotools/convert/convert.h
init.o: ../../../ezc/src/generator.h ../../../ezc/src/blocks.h init.o: ../../../../pikotools/convert/inttostr.h
init.o: ../../../ezc/src/cache.h ../../../ezc/src/functions.h init.o: ../../../../pikotools/membuffer/membuffer.h
init.o: ../../../ezc/src/funinfo.h ../../../ezc/src/objects.h init.o: ../../../../pikotools/textstream/types.h
init.o: ../../../ezc/src/pattern.h ../../../ezc/src/patternparser.h init.o: ../../../../winix/winixd/core/slog.h
init.o: ../../../winix/notify/notifythread.h ../../../winix/core/basethread.h init.o: ../../../../winix/winixd/core/cur.h
init.o: ../../../winix/notify/templatesnotify.h ../../../winix/core/config.h init.o: ../../../../winix/winixd/core/request.h
init.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h init.o: ../../../../winix/winixd/core/requesttypes.h
init.o: ../../../winix/core/lastcontainer.h ../../../winix/core/mounts.h init.o: ../../../../winix/winixd/core/item.h
init.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h init.o: ../../../../winix/winixd/core/error.h
init.o: ../../../winix/core/run.h ../../../winix/core/users.h groups.h init.o: ../../../../winix/winixd/core/config.h
init.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h init.o: ../../../../pikotools/space/spaceparser.h
init.o: ../../../winix/core/threadmanager.h ../../../winix/core/timezones.h init.o: ../../../../pikotools/space/space.h
init.o: ../../../winix/core/timezone.h ../../../winix/core/sessionmanager.h init.o: ../../../../pikotools/textstream/types.h
init.o: ../../../winix/core/sessioncontainer.h init.o: ../../../../winix/winixd/core/htmlfilter.h
init.o: ../../../winix/core/ipbancontainer.h init.o: ../../../../winix/winixd/templates/htmltextstream.h
init.o: ../../../winix/core/sessionidmanager.h ../../../tito/src/base64.h init.o: ../../../../winix/winixd/core/textstream.h
init.o: ../../../tito/src/aes.h ../../../winix/functions/functions.h init.o: ../../../../winix/winixd/core/misc.h
init.o: ../../../winix/functions/functionbase.h ../../../winix/core/request.h init.o: ../../../../pikotools/utf8/utf8.h
init.o: ../../../winix/core/system.h ../../../winix/core/synchro.h init.o: ../../../../winix/winixd/core/winix_const.h
init.o: ../../../winix/functions/functionparser.h ../../../winix/core/cur.h init.o: ../../../../pikotools/space/spacetojson.h
init.o: ../../../winix/functions/account.h ../../../winix/functions/adduser.h init.o: ../../../../ezc/src/outstreams.h
init.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h init.o: ../../../../winix/winixd/core/session.h
init.o: ../../../winix/functions/privchanger.h init.o: ../../../../winix/winixd/core/user.h
init.o: ../../../winix/functions/chown.h ../../../winix/functions/ckeditor.h init.o: ../../../../winix/winixd/core/plugindata.h
init.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h init.o: ../../../../winix/winixd/core/rebus.h
init.o: ../../../winix/functions/download.h ../../../winix/functions/emacs.h init.o: ../../../../winix/winixd/core/ipban.h
init.o: ../../../winix/functions/env.h ../../../winix/functions/imgcrop.h init.o: ../../../../winix/winixd/core/mount.h
init.o: ../../../winix/functions/last.h ../../../winix/functions/login.h init.o: ../../../../winix/winixd/templates/locale.h
init.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h init.o: ../../../../winix/winixd/core/system.h
init.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h init.o: ../../../../winix/winixd/core/job.h
init.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h init.o: ../../../../winix/winixd/core/basethread.h
init.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h init.o: ../../../../winix/winixd/core/synchro.h
init.o: ../../../winix/functions/node.h ../../../winix/functions/passwd.h init.o: ../../../../winix/winixd/core/dirs.h
init.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h init.o: ../../../../winix/winixd/core/dircontainer.h
init.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h init.o: ../../../../winix/winixd/db/db.h ../../../../winix/winixd/db/dbbase.h
init.o: ../../../winix/functions/rmuser.h ../../../winix/functions/sort.h init.o: ../../../../winix/winixd/db/dbconn.h
init.o: ../../../winix/functions/specialdefault.h init.o: ../../../../winix/winixd/db/dbtextstream.h
init.o: ../../../winix/functions/stat.h ../../../winix/functions/subject.h init.o: ../../../../winix/winixd/core/error.h
init.o: ../../../winix/functions/template.h init.o: ../../../../winix/winixd/db/dbitemquery.h
init.o: ../../../winix/functions/tinymce.h ../../../winix/functions/uname.h init.o: ../../../../winix/winixd/core/item.h
init.o: ../../../winix/functions/upload.h ../../../winix/functions/uptime.h init.o: ../../../../winix/winixd/db/dbitemcolumns.h
init.o: ../../../winix/functions/who.h ../../../winix/functions/vim.h init.o: ../../../../winix/winixd/core/user.h
init.o: ../../../winix/core/htmlfilter.h ../../../winix/templates/templates.h init.o: ../../../../winix/winixd/core/group.h
init.o: ../../../winix/templates/patterncacher.h init.o: ../../../../winix/winixd/core/dircontainer.h
init.o: ../../../winix/templates/indexpatterns.h init.o: ../../../../winix/winixd/core/ugcontainer.h
init.o: ../../../winix/templates/patterns.h init.o: ../../../../winix/winixd/notify/notify.h
init.o: ../../../winix/templates/changepatterns.h init.o: ../../../../winix/winixd/notify/notifypool.h
init.o: ../../../winix/templates/htmltextstream.h init.o: ../../../../winix/winixd/templates/patterns.h
init.o: ../../../winix/core/sessionmanager.h groupinfo.h init.o: ../../../../winix/winixd/templates/locale.h
templates.o: ../../../winix/templates/templates.h ../../../ezc/src/ezc.h init.o: ../../../../winix/winixd/templates/localefilter.h
templates.o: ../../../ezc/src/generator.h ../../../ezc/src/blocks.h init.o: ../../../../ezc/src/ezc.h ../../../../ezc/src/generator.h
templates.o: ../../../winix/core/item.h ../../../ezc/src/cache.h init.o: ../../../../ezc/src/blocks.h ../../../../ezc/src/cache.h
templates.o: ../../../ezc/src/functions.h ../../../pikotools/utf8/utf8.h init.o: ../../../../ezc/src/functions.h ../../../../ezc/src/funinfo.h
templates.o: ../../../ezc/src/funinfo.h ../../../ezc/src/objects.h init.o: ../../../../ezc/src/objects.h ../../../../ezc/src/pattern.h
templates.o: ../../../ezc/src/pattern.h ../../../ezc/src/outstreams.h init.o: ../../../../ezc/src/patternparser.h
templates.o: ../../../ezc/src/patternparser.h ../../../winix/core/misc.h init.o: ../../../../winix/winixd/notify/notifythread.h
templates.o: ../../../winix/core/requesttypes.h init.o: ../../../../winix/winixd/core/basethread.h
templates.o: ../../../pikotools/textstream/textstream.h init.o: ../../../../winix/winixd/notify/templatesnotify.h
templates.o: ../../../pikotools/space/space.h ../../../pikotools/date/date.h init.o: ../../../../winix/winixd/core/config.h
templates.o: ../../../pikotools/convert/convert.h init.o: ../../../../winix/winixd/core/users.h
templates.o: ../../../pikotools/convert/inttostr.h init.o: ../../../../winix/winixd/core/ugcontainer.h
templates.o: ../../../pikotools/membuffer/membuffer.h init.o: ../../../../winix/winixd/core/lastcontainer.h
templates.o: ../../../pikotools/textstream/types.h init.o: ../../../../winix/winixd/core/mounts.h
templates.o: ../../../winix/core/winix_const.h init.o: ../../../../winix/winixd/core/mountparser.h
templates.o: ../../../winix/templates/patterncacher.h init.o: ../../../../winix/winixd/core/crypt.h
templates.o: ../../../winix/core/item.h init.o: ../../../../winix/winixd/core/run.h
templates.o: ../../../winix/templates/indexpatterns.h init.o: ../../../../winix/winixd/core/users.h groups.h
templates.o: ../../../winix/templates/patterns.h init.o: ../../../../winix/winixd/core/loadavg.h
templates.o: ../../../winix/templates/locale.h init.o: ../../../../winix/winixd/core/image.h
templates.o: ../../../winix/templates/changepatterns.h init.o: ../../../../winix/winixd/core/threadmanager.h
templates.o: ../../../winix/templates/htmltextstream.h init.o: ../../../../winix/winixd/core/timezones.h
templates.o: ../../../winix/templates/localefilter.h init.o: ../../../../winix/winixd/core/timezone.h
templates.o: ../../../winix/core/config.h ../../../winix/core/cur.h init.o: ../../../../winix/winixd/core/sessionmanager.h
templates.o: ../../../winix/core/system.h ../../../winix/core/job.h init.o: ../../../../winix/winixd/core/sessioncontainer.h
templates.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h init.o: ../../../../winix/winixd/core/ipbancontainer.h
templates.o: ../../../winix/core/dirs.h ../../../winix/core/dircontainer.h init.o: ../../../../winix/winixd/core/sessionidmanager.h
templates.o: ../../../winix/db/db.h ../../../winix/db/dbbase.h init.o: ../../../../tito/src/base64.h ../../../../tito/src/aes.h
templates.o: ../../../winix/db/dbconn.h ../../../winix/db/dbtextstream.h init.o: ../../../../winix/winixd/functions/functions.h
templates.o: ../../../winix/core/textstream.h ../../../winix/core/error.h init.o: ../../../../winix/winixd/functions/functionbase.h
templates.o: ../../../pikotools/space/spaceparser.h init.o: ../../../../winix/winixd/core/request.h
templates.o: ../../../pikotools/space/space.h init.o: ../../../../winix/winixd/core/system.h
templates.o: ../../../pikotools/textstream/types.h init.o: ../../../../winix/winixd/core/synchro.h
templates.o: ../../../winix/db/dbitemquery.h init.o: ../../../../winix/winixd/functions/functionparser.h
templates.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h init.o: ../../../../winix/winixd/core/cur.h
templates.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h init.o: ../../../../winix/winixd/functions/account.h
templates.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h init.o: ../../../../winix/winixd/functions/adduser.h
templates.o: ../../../winix/core/textstream.h init.o: ../../../../winix/winixd/functions/cat.h
templates.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h init.o: ../../../../winix/winixd/functions/chmod.h
templates.o: ../../../winix/core/cur.h ../../../winix/core/request.h init.o: ../../../../winix/winixd/functions/privchanger.h
templates.o: ../../../winix/core/error.h ../../../winix/core/config.h init.o: ../../../../winix/winixd/functions/chown.h
templates.o: ../../../winix/core/htmlfilter.h init.o: ../../../../winix/winixd/functions/ckeditor.h
templates.o: ../../../winix/templates/htmltextstream.h init.o: ../../../../winix/winixd/functions/cp.h
templates.o: ../../../pikotools/space/spacetojson.h init.o: ../../../../winix/winixd/functions/default.h
templates.o: ../../../winix/core/session.h ../../../winix/core/user.h init.o: ../../../../winix/winixd/functions/download.h
templates.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h init.o: ../../../../winix/winixd/functions/emacs.h
templates.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h init.o: ../../../../winix/winixd/functions/env.h
templates.o: ../../../winix/templates/locale.h ../../../winix/notify/notify.h init.o: ../../../../winix/winixd/functions/imgcrop.h
templates.o: ../../../winix/notify/notifypool.h init.o: ../../../../winix/winixd/functions/last.h
templates.o: ../../../winix/templates/patterns.h init.o: ../../../../winix/winixd/functions/login.h
templates.o: ../../../winix/notify/notifythread.h init.o: ../../../../winix/winixd/functions/logout.h
templates.o: ../../../winix/core/basethread.h init.o: ../../../../winix/winixd/functions/ln.h
templates.o: ../../../winix/notify/templatesnotify.h init.o: ../../../../winix/winixd/functions/ls.h
templates.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h init.o: ../../../../winix/winixd/functions/man.h
templates.o: ../../../winix/core/lastcontainer.h ../../../winix/core/mounts.h init.o: ../../../../winix/winixd/functions/meta.h
templates.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h init.o: ../../../../winix/winixd/functions/mkdir.h
templates.o: ../../../winix/core/run.h ../../../winix/core/users.h groups.h init.o: ../../../../winix/winixd/functions/mv.h
templates.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h init.o: ../../../../winix/winixd/functions/nicedit.h
templates.o: ../../../winix/core/threadmanager.h init.o: ../../../../winix/winixd/functions/node.h
templates.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h init.o: ../../../../winix/winixd/functions/passwd.h
templates.o: ../../../winix/core/sessionmanager.h init.o: ../../../../winix/winixd/functions/priv.h
templates.o: ../../../winix/core/htmlfilter.h ../../../winix/core/plugin.h init.o: ../../../../winix/winixd/functions/pw.h
templates.o: ../../../winix/core/pluginmsg.h ../../../winix/core/system.h init.o: ../../../../winix/winixd/functions/reload.h
templates.o: ../../../winix/core/sessionmanager.h init.o: ../../../../winix/winixd/functions/rm.h
templates.o: ../../../winix/core/sessioncontainer.h init.o: ../../../../winix/winixd/functions/rmuser.h
templates.o: ../../../winix/core/ipbancontainer.h init.o: ../../../../winix/winixd/functions/sort.h
templates.o: ../../../winix/core/sessionidmanager.h init.o: ../../../../winix/winixd/functions/specialdefault.h
templates.o: ../../../tito/src/base64.h ../../../tito/src/aes.h init.o: ../../../../winix/winixd/functions/stat.h
templates.o: ../../../winix/functions/functions.h init.o: ../../../../winix/winixd/functions/subject.h
templates.o: ../../../winix/functions/functionbase.h init.o: ../../../../winix/winixd/functions/template.h
templates.o: ../../../winix/core/request.h ../../../winix/core/synchro.h init.o: ../../../../winix/winixd/functions/tinymce.h
templates.o: ../../../winix/functions/functionparser.h init.o: ../../../../winix/winixd/functions/uname.h
templates.o: ../../../winix/functions/account.h init.o: ../../../../winix/winixd/functions/upload.h
templates.o: ../../../winix/functions/adduser.h init.o: ../../../../winix/winixd/functions/uptime.h
templates.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h init.o: ../../../../winix/winixd/functions/who.h
templates.o: ../../../winix/functions/privchanger.h init.o: ../../../../winix/winixd/functions/vim.h
templates.o: ../../../winix/functions/chown.h init.o: ../../../../winix/winixd/core/htmlfilter.h
templates.o: ../../../winix/functions/ckeditor.h init.o: ../../../../winix/winixd/templates/templates.h
templates.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h init.o: ../../../../winix/winixd/templates/patterncacher.h
templates.o: ../../../winix/functions/download.h init.o: ../../../../winix/winixd/templates/indexpatterns.h
templates.o: ../../../winix/functions/emacs.h ../../../winix/functions/env.h init.o: ../../../../winix/winixd/templates/patterns.h
templates.o: ../../../winix/functions/imgcrop.h init.o: ../../../../winix/winixd/templates/changepatterns.h
templates.o: ../../../winix/functions/last.h ../../../winix/functions/login.h init.o: ../../../../winix/winixd/templates/htmltextstream.h
templates.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h init.o: ../../../../winix/winixd/core/sessionmanager.h groupinfo.h
templates.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h templates.o: ../../../../winix/winixd/templates/templates.h
templates.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h templates.o: ../../../../ezc/src/ezc.h ../../../../ezc/src/generator.h
templates.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h templates.o: ../../../../ezc/src/blocks.h
templates.o: ../../../winix/functions/node.h templates.o: ../../../../winix/winixd/core/item.h ../../../../ezc/src/cache.h
templates.o: ../../../winix/functions/passwd.h templates.o: ../../../../ezc/src/functions.h
templates.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h templates.o: ../../../../pikotools/utf8/utf8.h ../../../../ezc/src/funinfo.h
templates.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h templates.o: ../../../../ezc/src/objects.h ../../../../ezc/src/pattern.h
templates.o: ../../../winix/functions/rmuser.h templates.o: ../../../../ezc/src/outstreams.h
templates.o: ../../../winix/functions/sort.h templates.o: ../../../../ezc/src/patternparser.h
templates.o: ../../../winix/functions/specialdefault.h templates.o: ../../../../winix/winixd/core/misc.h
templates.o: ../../../winix/functions/stat.h templates.o: ../../../../winix/winixd/core/requesttypes.h
templates.o: ../../../winix/functions/subject.h templates.o: ../../../../pikotools/textstream/textstream.h
templates.o: ../../../winix/functions/template.h templates.o: ../../../../pikotools/space/space.h
templates.o: ../../../winix/functions/tinymce.h templates.o: ../../../../pikotools/date/date.h
templates.o: ../../../winix/functions/uname.h templates.o: ../../../../pikotools/convert/convert.h
templates.o: ../../../winix/functions/upload.h templates.o: ../../../../pikotools/convert/inttostr.h
templates.o: ../../../winix/functions/uptime.h ../../../winix/functions/who.h templates.o: ../../../../pikotools/membuffer/membuffer.h
templates.o: ../../../winix/functions/vim.h groupinfo.h templates.o: ../../../../pikotools/textstream/types.h
templates.o: ../../../winix/core/misc.h templates.o: ../../../../winix/winixd/core/winix_const.h
templates.o: ../../../../winix/winixd/templates/patterncacher.h
templates.o: ../../../../winix/winixd/core/item.h
templates.o: ../../../../winix/winixd/templates/indexpatterns.h
templates.o: ../../../../winix/winixd/templates/patterns.h
templates.o: ../../../../winix/winixd/templates/locale.h
templates.o: ../../../../winix/winixd/templates/changepatterns.h
templates.o: ../../../../winix/winixd/templates/htmltextstream.h
templates.o: ../../../../winix/winixd/templates/localefilter.h
templates.o: ../../../../winix/winixd/core/config.h
templates.o: ../../../../winix/winixd/core/cur.h
templates.o: ../../../../winix/winixd/core/system.h
templates.o: ../../../../winix/winixd/core/job.h
templates.o: ../../../../winix/winixd/core/basethread.h
templates.o: ../../../../winix/winixd/core/synchro.h
templates.o: ../../../../winix/winixd/core/dirs.h
templates.o: ../../../../winix/winixd/core/dircontainer.h
templates.o: ../../../../winix/winixd/db/db.h
templates.o: ../../../../winix/winixd/db/dbbase.h
templates.o: ../../../../winix/winixd/db/dbconn.h
templates.o: ../../../../winix/winixd/db/dbtextstream.h
templates.o: ../../../../winix/winixd/core/textstream.h
templates.o: ../../../../winix/winixd/core/error.h
templates.o: ../../../../pikotools/space/spaceparser.h
templates.o: ../../../../pikotools/space/space.h
templates.o: ../../../../pikotools/textstream/types.h
templates.o: ../../../../winix/winixd/db/dbitemquery.h
templates.o: ../../../../winix/winixd/db/dbitemcolumns.h
templates.o: ../../../../winix/winixd/core/user.h
templates.o: ../../../../winix/winixd/core/group.h
templates.o: ../../../../winix/winixd/core/dircontainer.h
templates.o: ../../../../winix/winixd/core/ugcontainer.h
templates.o: ../../../../winix/winixd/core/log.h
templates.o: ../../../../winix/winixd/core/textstream.h
templates.o: ../../../../winix/winixd/core/logmanipulators.h
templates.o: ../../../../winix/winixd/core/slog.h
templates.o: ../../../../winix/winixd/core/cur.h
templates.o: ../../../../winix/winixd/core/request.h
templates.o: ../../../../winix/winixd/core/error.h
templates.o: ../../../../winix/winixd/core/config.h
templates.o: ../../../../winix/winixd/core/htmlfilter.h
templates.o: ../../../../winix/winixd/templates/htmltextstream.h
templates.o: ../../../../pikotools/space/spacetojson.h
templates.o: ../../../../winix/winixd/core/session.h
templates.o: ../../../../winix/winixd/core/user.h
templates.o: ../../../../winix/winixd/core/plugindata.h
templates.o: ../../../../winix/winixd/core/rebus.h
templates.o: ../../../../winix/winixd/core/ipban.h
templates.o: ../../../../winix/winixd/core/mount.h
templates.o: ../../../../winix/winixd/templates/locale.h
templates.o: ../../../../winix/winixd/notify/notify.h
templates.o: ../../../../winix/winixd/notify/notifypool.h
templates.o: ../../../../winix/winixd/templates/patterns.h
templates.o: ../../../../winix/winixd/notify/notifythread.h
templates.o: ../../../../winix/winixd/core/basethread.h
templates.o: ../../../../winix/winixd/notify/templatesnotify.h
templates.o: ../../../../winix/winixd/core/users.h
templates.o: ../../../../winix/winixd/core/ugcontainer.h
templates.o: ../../../../winix/winixd/core/lastcontainer.h
templates.o: ../../../../winix/winixd/core/mounts.h
templates.o: ../../../../winix/winixd/core/mountparser.h
templates.o: ../../../../winix/winixd/core/crypt.h
templates.o: ../../../../winix/winixd/core/run.h
templates.o: ../../../../winix/winixd/core/users.h groups.h
templates.o: ../../../../winix/winixd/core/loadavg.h
templates.o: ../../../../winix/winixd/core/image.h
templates.o: ../../../../winix/winixd/core/threadmanager.h
templates.o: ../../../../winix/winixd/core/timezones.h
templates.o: ../../../../winix/winixd/core/timezone.h
templates.o: ../../../../winix/winixd/core/sessionmanager.h
templates.o: ../../../../winix/winixd/core/htmlfilter.h
templates.o: ../../../../winix/winixd/core/plugin.h
templates.o: ../../../../winix/winixd/core/pluginmsg.h
templates.o: ../../../../winix/winixd/core/system.h
templates.o: ../../../../winix/winixd/core/sessionmanager.h
templates.o: ../../../../winix/winixd/core/sessioncontainer.h
templates.o: ../../../../winix/winixd/core/ipbancontainer.h
templates.o: ../../../../winix/winixd/core/sessionidmanager.h
templates.o: ../../../../tito/src/base64.h ../../../../tito/src/aes.h
templates.o: ../../../../winix/winixd/functions/functions.h
templates.o: ../../../../winix/winixd/functions/functionbase.h
templates.o: ../../../../winix/winixd/core/request.h
templates.o: ../../../../winix/winixd/core/synchro.h
templates.o: ../../../../winix/winixd/functions/functionparser.h
templates.o: ../../../../winix/winixd/functions/account.h
templates.o: ../../../../winix/winixd/functions/adduser.h
templates.o: ../../../../winix/winixd/functions/cat.h
templates.o: ../../../../winix/winixd/functions/chmod.h
templates.o: ../../../../winix/winixd/functions/privchanger.h
templates.o: ../../../../winix/winixd/functions/chown.h
templates.o: ../../../../winix/winixd/functions/ckeditor.h
templates.o: ../../../../winix/winixd/functions/cp.h
templates.o: ../../../../winix/winixd/functions/default.h
templates.o: ../../../../winix/winixd/functions/download.h
templates.o: ../../../../winix/winixd/functions/emacs.h
templates.o: ../../../../winix/winixd/functions/env.h
templates.o: ../../../../winix/winixd/functions/imgcrop.h
templates.o: ../../../../winix/winixd/functions/last.h
templates.o: ../../../../winix/winixd/functions/login.h
templates.o: ../../../../winix/winixd/functions/logout.h
templates.o: ../../../../winix/winixd/functions/ln.h
templates.o: ../../../../winix/winixd/functions/ls.h
templates.o: ../../../../winix/winixd/functions/man.h
templates.o: ../../../../winix/winixd/functions/meta.h
templates.o: ../../../../winix/winixd/functions/mkdir.h
templates.o: ../../../../winix/winixd/functions/mv.h
templates.o: ../../../../winix/winixd/functions/nicedit.h
templates.o: ../../../../winix/winixd/functions/node.h
templates.o: ../../../../winix/winixd/functions/passwd.h
templates.o: ../../../../winix/winixd/functions/priv.h
templates.o: ../../../../winix/winixd/functions/pw.h
templates.o: ../../../../winix/winixd/functions/reload.h
templates.o: ../../../../winix/winixd/functions/rm.h
templates.o: ../../../../winix/winixd/functions/rmuser.h
templates.o: ../../../../winix/winixd/functions/sort.h
templates.o: ../../../../winix/winixd/functions/specialdefault.h
templates.o: ../../../../winix/winixd/functions/stat.h
templates.o: ../../../../winix/winixd/functions/subject.h
templates.o: ../../../../winix/winixd/functions/template.h
templates.o: ../../../../winix/winixd/functions/tinymce.h
templates.o: ../../../../winix/winixd/functions/uname.h
templates.o: ../../../../winix/winixd/functions/upload.h
templates.o: ../../../../winix/winixd/functions/uptime.h
templates.o: ../../../../winix/winixd/functions/who.h
templates.o: ../../../../winix/winixd/functions/vim.h groupinfo.h
templates.o: ../../../../winix/winixd/core/misc.h

View File

@ -1,5 +1,10 @@
include Makefile.o.dep include Makefile.o.dep
current_path := $(shell pwd)
global_relative_working_dir := $(shell relative_path $(current_path) $(GLOBAL_WORKING_DIR))
winix_include_paths = -I$(global_relative_working_dir)/winix/winixd -I$(global_relative_working_dir)/ezc/src -I$(global_relative_working_dir)/tito/src -I$(global_relative_working_dir)/pikotools
name = mailregister.so name = mailregister.so
@ -7,17 +12,17 @@ all: $(name)
$(name): $(o) $(name): $(o)
$(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $(LDFLAGS) *.o $(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(winix_include_paths) $(LDFLAGS) *.o
%.o: %.cpp %.o: %.cpp
$(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< $(CXX) -c $(CXXFLAGS) $(winix_include_paths) $<
depend: depend:
makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep makedepend -Y. $(winix_include_paths) -f- *.cpp > Makefile.dep
echo -n "o = " > Makefile.o.dep echo -n "o = " > Makefile.o.dep
ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep

View File

@ -1,382 +1,522 @@
# DO NOT DELETE # DO NOT DELETE
funregistermail.o: funregistermail.h ../../../winix/functions/functionbase.h funregistermail.o: funregistermail.h
funregistermail.o: ../../../winix/core/item.h funregistermail.o: ../../../../winix/winixd/functions/functionbase.h
funregistermail.o: ../../../pikotools/space/space.h funregistermail.o: ../../../../winix/winixd/core/item.h
funregistermail.o: ../../../pikotools/textstream/types.h funregistermail.o: ../../../../pikotools/space/space.h
funregistermail.o: ../../../pikotools/date/date.h ../../../winix/db/db.h funregistermail.o: ../../../../pikotools/textstream/types.h
funregistermail.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h funregistermail.o: ../../../../pikotools/date/date.h
funregistermail.o: ../../../winix/db/dbtextstream.h funregistermail.o: ../../../../winix/winixd/db/db.h
funregistermail.o: ../../../winix/core/textstream.h funregistermail.o: ../../../../winix/winixd/db/dbbase.h
funregistermail.o: ../../../winix/core/misc.h ../../../winix/core/item.h funregistermail.o: ../../../../winix/winixd/db/dbconn.h
funregistermail.o: ../../../winix/core/requesttypes.h funregistermail.o: ../../../../winix/winixd/db/dbtextstream.h
funregistermail.o: ../../../pikotools/textstream/textstream.h funregistermail.o: ../../../../winix/winixd/core/textstream.h
funregistermail.o: ../../../pikotools/convert/convert.h funregistermail.o: ../../../../winix/winixd/core/misc.h
funregistermail.o: ../../../pikotools/convert/inttostr.h funregistermail.o: ../../../../winix/winixd/core/item.h
funregistermail.o: ../../../pikotools/membuffer/membuffer.h funregistermail.o: ../../../../winix/winixd/core/requesttypes.h
funregistermail.o: ../../../pikotools/textstream/types.h funregistermail.o: ../../../../pikotools/textstream/textstream.h
funregistermail.o: ../../../pikotools/utf8/utf8.h funregistermail.o: ../../../../pikotools/convert/convert.h
funregistermail.o: ../../../winix/core/winix_const.h funregistermail.o: ../../../../pikotools/convert/inttostr.h
funregistermail.o: ../../../winix/core/error.h funregistermail.o: ../../../../pikotools/membuffer/membuffer.h
funregistermail.o: ../../../pikotools/space/spaceparser.h funregistermail.o: ../../../../pikotools/textstream/types.h
funregistermail.o: ../../../pikotools/space/space.h funregistermail.o: ../../../../pikotools/utf8/utf8.h
funregistermail.o: ../../../winix/db/dbitemquery.h funregistermail.o: ../../../../winix/winixd/core/winix_const.h
funregistermail.o: ../../../winix/db/dbitemcolumns.h funregistermail.o: ../../../../winix/winixd/core/error.h
funregistermail.o: ../../../winix/core/user.h ../../../winix/core/group.h funregistermail.o: ../../../../pikotools/space/spaceparser.h
funregistermail.o: ../../../winix/core/dircontainer.h funregistermail.o: ../../../../pikotools/space/space.h
funregistermail.o: ../../../winix/core/ugcontainer.h funregistermail.o: ../../../../winix/winixd/db/dbitemquery.h
funregistermail.o: ../../../winix/core/log.h ../../../winix/core/textstream.h funregistermail.o: ../../../../winix/winixd/db/dbitemcolumns.h
funregistermail.o: ../../../winix/core/logmanipulators.h funregistermail.o: ../../../../winix/winixd/core/user.h
funregistermail.o: ../../../winix/core/slog.h ../../../winix/core/cur.h funregistermail.o: ../../../../winix/winixd/core/group.h
funregistermail.o: ../../../winix/core/request.h ../../../winix/core/error.h funregistermail.o: ../../../../winix/winixd/core/dircontainer.h
funregistermail.o: ../../../winix/core/config.h funregistermail.o: ../../../../winix/winixd/core/ugcontainer.h
funregistermail.o: ../../../winix/core/htmlfilter.h funregistermail.o: ../../../../winix/winixd/core/log.h
funregistermail.o: ../../../winix/templates/htmltextstream.h funregistermail.o: ../../../../winix/winixd/core/textstream.h
funregistermail.o: ../../../pikotools/space/spacetojson.h funregistermail.o: ../../../../winix/winixd/core/logmanipulators.h
funregistermail.o: ../../../ezc/src/outstreams.h funregistermail.o: ../../../../winix/winixd/core/slog.h
funregistermail.o: ../../../winix/core/session.h ../../../winix/core/user.h funregistermail.o: ../../../../winix/winixd/core/cur.h
funregistermail.o: ../../../winix/core/plugindata.h funregistermail.o: ../../../../winix/winixd/core/request.h
funregistermail.o: ../../../winix/core/rebus.h ../../../winix/core/ipban.h funregistermail.o: ../../../../winix/winixd/core/error.h
funregistermail.o: ../../../winix/core/mount.h funregistermail.o: ../../../../winix/winixd/core/config.h
funregistermail.o: ../../../winix/templates/locale.h funregistermail.o: ../../../../winix/winixd/core/htmlfilter.h
funregistermail.o: ../../../winix/core/request.h ../../../winix/core/config.h funregistermail.o: ../../../../winix/winixd/templates/htmltextstream.h
funregistermail.o: ../../../winix/core/system.h ../../../winix/core/job.h funregistermail.o: ../../../../pikotools/space/spacetojson.h
funregistermail.o: ../../../winix/core/basethread.h funregistermail.o: ../../../../ezc/src/outstreams.h
funregistermail.o: ../../../winix/core/synchro.h ../../../winix/core/dirs.h funregistermail.o: ../../../../winix/winixd/core/session.h
funregistermail.o: ../../../winix/core/dircontainer.h funregistermail.o: ../../../../winix/winixd/core/user.h
funregistermail.o: ../../../winix/notify/notify.h funregistermail.o: ../../../../winix/winixd/core/plugindata.h
funregistermail.o: ../../../winix/notify/notifypool.h funregistermail.o: ../../../../winix/winixd/core/rebus.h
funregistermail.o: ../../../winix/templates/patterns.h funregistermail.o: ../../../../winix/winixd/core/ipban.h
funregistermail.o: ../../../winix/templates/locale.h funregistermail.o: ../../../../winix/winixd/core/mount.h
funregistermail.o: ../../../winix/templates/localefilter.h funregistermail.o: ../../../../winix/winixd/templates/locale.h
funregistermail.o: ../../../ezc/src/ezc.h ../../../ezc/src/generator.h funregistermail.o: ../../../../winix/winixd/core/request.h
funregistermail.o: ../../../ezc/src/blocks.h ../../../ezc/src/cache.h funregistermail.o: ../../../../winix/winixd/core/config.h
funregistermail.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h funregistermail.o: ../../../../winix/winixd/core/system.h
funregistermail.o: ../../../ezc/src/objects.h ../../../ezc/src/pattern.h funregistermail.o: ../../../../winix/winixd/core/job.h
funregistermail.o: ../../../ezc/src/patternparser.h funregistermail.o: ../../../../winix/winixd/core/basethread.h
funregistermail.o: ../../../winix/notify/notifythread.h funregistermail.o: ../../../../winix/winixd/core/synchro.h
funregistermail.o: ../../../winix/core/basethread.h funregistermail.o: ../../../../winix/winixd/core/dirs.h
funregistermail.o: ../../../winix/notify/templatesnotify.h funregistermail.o: ../../../../winix/winixd/core/dircontainer.h
funregistermail.o: ../../../winix/core/users.h funregistermail.o: ../../../../winix/winixd/notify/notify.h
funregistermail.o: ../../../winix/core/ugcontainer.h funregistermail.o: ../../../../winix/winixd/notify/notifypool.h
funregistermail.o: ../../../winix/core/lastcontainer.h funregistermail.o: ../../../../winix/winixd/templates/patterns.h
funregistermail.o: ../../../winix/core/mounts.h funregistermail.o: ../../../../winix/winixd/templates/locale.h
funregistermail.o: ../../../winix/core/mountparser.h funregistermail.o: ../../../../winix/winixd/templates/localefilter.h
funregistermail.o: ../../../winix/core/crypt.h ../../../winix/core/run.h funregistermail.o: ../../../../ezc/src/ezc.h ../../../../ezc/src/generator.h
funregistermail.o: ../../../winix/core/users.h ../../../winix/core/groups.h funregistermail.o: ../../../../ezc/src/blocks.h ../../../../ezc/src/cache.h
funregistermail.o: ../../../winix/core/group.h ../../../winix/core/loadavg.h funregistermail.o: ../../../../ezc/src/functions.h
funregistermail.o: ../../../winix/core/image.h funregistermail.o: ../../../../ezc/src/funinfo.h
funregistermail.o: ../../../winix/core/threadmanager.h funregistermail.o: ../../../../ezc/src/objects.h
funregistermail.o: ../../../winix/core/timezones.h funregistermail.o: ../../../../ezc/src/pattern.h
funregistermail.o: ../../../winix/core/timezone.h funregistermail.o: ../../../../ezc/src/patternparser.h
funregistermail.o: ../../../winix/core/synchro.h registermail_info.h mdb.h funregistermail.o: ../../../../winix/winixd/notify/notifythread.h
funregistermail.o: ../../../winix/db/dbbase.h ../../../winix/core/dirs.h funregistermail.o: ../../../../winix/winixd/core/basethread.h
funregistermail.o: ../../../../winix/winixd/notify/templatesnotify.h
funregistermail.o: ../../../../winix/winixd/core/users.h
funregistermail.o: ../../../../winix/winixd/core/ugcontainer.h
funregistermail.o: ../../../../winix/winixd/core/lastcontainer.h
funregistermail.o: ../../../../winix/winixd/core/mounts.h
funregistermail.o: ../../../../winix/winixd/core/mountparser.h
funregistermail.o: ../../../../winix/winixd/core/crypt.h
funregistermail.o: ../../../../winix/winixd/core/run.h
funregistermail.o: ../../../../winix/winixd/core/users.h
funregistermail.o: ../../../../winix/winixd/core/groups.h
funregistermail.o: ../../../../winix/winixd/core/group.h
funregistermail.o: ../../../../winix/winixd/core/loadavg.h
funregistermail.o: ../../../../winix/winixd/core/image.h
funregistermail.o: ../../../../winix/winixd/core/threadmanager.h
funregistermail.o: ../../../../winix/winixd/core/timezones.h
funregistermail.o: ../../../../winix/winixd/core/timezone.h
funregistermail.o: ../../../../winix/winixd/core/synchro.h
funregistermail.o: registermail_info.h mdb.h
funregistermail.o: ../../../../winix/winixd/db/dbbase.h
funregistermail.o: ../../../../winix/winixd/core/dirs.h
funregistermail_showusers.o: funregistermail_showusers.h funregistermail_showusers.o: funregistermail_showusers.h
funregistermail_showusers.o: ../../../winix/functions/functionbase.h funregistermail_showusers.o: ../../../../winix/winixd/functions/functionbase.h
funregistermail_showusers.o: ../../../winix/core/item.h funregistermail_showusers.o: ../../../../winix/winixd/core/item.h
funregistermail_showusers.o: ../../../pikotools/space/space.h funregistermail_showusers.o: ../../../../pikotools/space/space.h
funregistermail_showusers.o: ../../../pikotools/textstream/types.h funregistermail_showusers.o: ../../../../pikotools/textstream/types.h
funregistermail_showusers.o: ../../../pikotools/date/date.h funregistermail_showusers.o: ../../../../pikotools/date/date.h
funregistermail_showusers.o: ../../../winix/db/db.h funregistermail_showusers.o: ../../../../winix/winixd/db/db.h
funregistermail_showusers.o: ../../../winix/db/dbbase.h funregistermail_showusers.o: ../../../../winix/winixd/db/dbbase.h
funregistermail_showusers.o: ../../../winix/db/dbconn.h funregistermail_showusers.o: ../../../../winix/winixd/db/dbconn.h
funregistermail_showusers.o: ../../../winix/db/dbtextstream.h funregistermail_showusers.o: ../../../../winix/winixd/db/dbtextstream.h
funregistermail_showusers.o: ../../../winix/core/textstream.h funregistermail_showusers.o: ../../../../winix/winixd/core/textstream.h
funregistermail_showusers.o: ../../../winix/core/misc.h funregistermail_showusers.o: ../../../../winix/winixd/core/misc.h
funregistermail_showusers.o: ../../../winix/core/item.h funregistermail_showusers.o: ../../../../winix/winixd/core/item.h
funregistermail_showusers.o: ../../../winix/core/requesttypes.h funregistermail_showusers.o: ../../../../winix/winixd/core/requesttypes.h
funregistermail_showusers.o: ../../../pikotools/textstream/textstream.h funregistermail_showusers.o: ../../../../pikotools/textstream/textstream.h
funregistermail_showusers.o: ../../../pikotools/convert/convert.h funregistermail_showusers.o: ../../../../pikotools/convert/convert.h
funregistermail_showusers.o: ../../../pikotools/convert/inttostr.h funregistermail_showusers.o: ../../../../pikotools/convert/inttostr.h
funregistermail_showusers.o: ../../../pikotools/membuffer/membuffer.h funregistermail_showusers.o: ../../../../pikotools/membuffer/membuffer.h
funregistermail_showusers.o: ../../../pikotools/textstream/types.h funregistermail_showusers.o: ../../../../pikotools/textstream/types.h
funregistermail_showusers.o: ../../../pikotools/utf8/utf8.h funregistermail_showusers.o: ../../../../pikotools/utf8/utf8.h
funregistermail_showusers.o: ../../../winix/core/winix_const.h funregistermail_showusers.o: ../../../../winix/winixd/core/winix_const.h
funregistermail_showusers.o: ../../../winix/core/error.h funregistermail_showusers.o: ../../../../winix/winixd/core/error.h
funregistermail_showusers.o: ../../../pikotools/space/spaceparser.h funregistermail_showusers.o: ../../../../pikotools/space/spaceparser.h
funregistermail_showusers.o: ../../../pikotools/space/space.h funregistermail_showusers.o: ../../../../pikotools/space/space.h
funregistermail_showusers.o: ../../../winix/db/dbitemquery.h funregistermail_showusers.o: ../../../../winix/winixd/db/dbitemquery.h
funregistermail_showusers.o: ../../../winix/db/dbitemcolumns.h funregistermail_showusers.o: ../../../../winix/winixd/db/dbitemcolumns.h
funregistermail_showusers.o: ../../../winix/core/user.h funregistermail_showusers.o: ../../../../winix/winixd/core/user.h
funregistermail_showusers.o: ../../../winix/core/group.h funregistermail_showusers.o: ../../../../winix/winixd/core/group.h
funregistermail_showusers.o: ../../../winix/core/dircontainer.h funregistermail_showusers.o: ../../../../winix/winixd/core/dircontainer.h
funregistermail_showusers.o: ../../../winix/core/ugcontainer.h funregistermail_showusers.o: ../../../../winix/winixd/core/ugcontainer.h
funregistermail_showusers.o: ../../../winix/core/log.h funregistermail_showusers.o: ../../../../winix/winixd/core/log.h
funregistermail_showusers.o: ../../../winix/core/textstream.h funregistermail_showusers.o: ../../../../winix/winixd/core/textstream.h
funregistermail_showusers.o: ../../../winix/core/logmanipulators.h funregistermail_showusers.o: ../../../../winix/winixd/core/logmanipulators.h
funregistermail_showusers.o: ../../../winix/core/slog.h funregistermail_showusers.o: ../../../../winix/winixd/core/slog.h
funregistermail_showusers.o: ../../../winix/core/cur.h funregistermail_showusers.o: ../../../../winix/winixd/core/cur.h
funregistermail_showusers.o: ../../../winix/core/request.h funregistermail_showusers.o: ../../../../winix/winixd/core/request.h
funregistermail_showusers.o: ../../../winix/core/error.h funregistermail_showusers.o: ../../../../winix/winixd/core/error.h
funregistermail_showusers.o: ../../../winix/core/config.h funregistermail_showusers.o: ../../../../winix/winixd/core/config.h
funregistermail_showusers.o: ../../../winix/core/htmlfilter.h funregistermail_showusers.o: ../../../../winix/winixd/core/htmlfilter.h
funregistermail_showusers.o: ../../../winix/templates/htmltextstream.h funregistermail_showusers.o: ../../../../winix/winixd/templates/htmltextstream.h
funregistermail_showusers.o: ../../../pikotools/space/spacetojson.h funregistermail_showusers.o: ../../../../pikotools/space/spacetojson.h
funregistermail_showusers.o: ../../../ezc/src/outstreams.h funregistermail_showusers.o: ../../../../ezc/src/outstreams.h
funregistermail_showusers.o: ../../../winix/core/session.h funregistermail_showusers.o: ../../../../winix/winixd/core/session.h
funregistermail_showusers.o: ../../../winix/core/user.h funregistermail_showusers.o: ../../../../winix/winixd/core/user.h
funregistermail_showusers.o: ../../../winix/core/plugindata.h funregistermail_showusers.o: ../../../../winix/winixd/core/plugindata.h
funregistermail_showusers.o: ../../../winix/core/rebus.h funregistermail_showusers.o: ../../../../winix/winixd/core/rebus.h
funregistermail_showusers.o: ../../../winix/core/ipban.h funregistermail_showusers.o: ../../../../winix/winixd/core/ipban.h
funregistermail_showusers.o: ../../../winix/core/mount.h funregistermail_showusers.o: ../../../../winix/winixd/core/mount.h
funregistermail_showusers.o: ../../../winix/templates/locale.h funregistermail_showusers.o: ../../../../winix/winixd/templates/locale.h
funregistermail_showusers.o: ../../../winix/core/request.h funregistermail_showusers.o: ../../../../winix/winixd/core/request.h
funregistermail_showusers.o: ../../../winix/core/config.h funregistermail_showusers.o: ../../../../winix/winixd/core/config.h
funregistermail_showusers.o: ../../../winix/core/system.h funregistermail_showusers.o: ../../../../winix/winixd/core/system.h
funregistermail_showusers.o: ../../../winix/core/job.h funregistermail_showusers.o: ../../../../winix/winixd/core/job.h
funregistermail_showusers.o: ../../../winix/core/basethread.h funregistermail_showusers.o: ../../../../winix/winixd/core/basethread.h
funregistermail_showusers.o: ../../../winix/core/synchro.h funregistermail_showusers.o: ../../../../winix/winixd/core/synchro.h
funregistermail_showusers.o: ../../../winix/core/dirs.h funregistermail_showusers.o: ../../../../winix/winixd/core/dirs.h
funregistermail_showusers.o: ../../../winix/core/dircontainer.h funregistermail_showusers.o: ../../../../winix/winixd/core/dircontainer.h
funregistermail_showusers.o: ../../../winix/notify/notify.h funregistermail_showusers.o: ../../../../winix/winixd/notify/notify.h
funregistermail_showusers.o: ../../../winix/notify/notifypool.h funregistermail_showusers.o: ../../../../winix/winixd/notify/notifypool.h
funregistermail_showusers.o: ../../../winix/templates/patterns.h funregistermail_showusers.o: ../../../../winix/winixd/templates/patterns.h
funregistermail_showusers.o: ../../../winix/templates/locale.h funregistermail_showusers.o: ../../../../winix/winixd/templates/locale.h
funregistermail_showusers.o: ../../../winix/templates/localefilter.h funregistermail_showusers.o: ../../../../winix/winixd/templates/localefilter.h
funregistermail_showusers.o: ../../../ezc/src/ezc.h funregistermail_showusers.o: ../../../../ezc/src/ezc.h
funregistermail_showusers.o: ../../../ezc/src/generator.h funregistermail_showusers.o: ../../../../ezc/src/generator.h
funregistermail_showusers.o: ../../../ezc/src/blocks.h funregistermail_showusers.o: ../../../../ezc/src/blocks.h
funregistermail_showusers.o: ../../../ezc/src/cache.h funregistermail_showusers.o: ../../../../ezc/src/cache.h
funregistermail_showusers.o: ../../../ezc/src/functions.h funregistermail_showusers.o: ../../../../ezc/src/functions.h
funregistermail_showusers.o: ../../../ezc/src/funinfo.h funregistermail_showusers.o: ../../../../ezc/src/funinfo.h
funregistermail_showusers.o: ../../../ezc/src/objects.h funregistermail_showusers.o: ../../../../ezc/src/objects.h
funregistermail_showusers.o: ../../../ezc/src/pattern.h funregistermail_showusers.o: ../../../../ezc/src/pattern.h
funregistermail_showusers.o: ../../../ezc/src/patternparser.h funregistermail_showusers.o: ../../../../ezc/src/patternparser.h
funregistermail_showusers.o: ../../../winix/notify/notifythread.h funregistermail_showusers.o: ../../../../winix/winixd/notify/notifythread.h
funregistermail_showusers.o: ../../../winix/core/basethread.h funregistermail_showusers.o: ../../../../winix/winixd/core/basethread.h
funregistermail_showusers.o: ../../../winix/notify/templatesnotify.h funregistermail_showusers.o: ../../../../winix/winixd/notify/templatesnotify.h
funregistermail_showusers.o: ../../../winix/core/users.h funregistermail_showusers.o: ../../../../winix/winixd/core/users.h
funregistermail_showusers.o: ../../../winix/core/ugcontainer.h funregistermail_showusers.o: ../../../../winix/winixd/core/ugcontainer.h
funregistermail_showusers.o: ../../../winix/core/lastcontainer.h funregistermail_showusers.o: ../../../../winix/winixd/core/lastcontainer.h
funregistermail_showusers.o: ../../../winix/core/mounts.h funregistermail_showusers.o: ../../../../winix/winixd/core/mounts.h
funregistermail_showusers.o: ../../../winix/core/mountparser.h funregistermail_showusers.o: ../../../../winix/winixd/core/mountparser.h
funregistermail_showusers.o: ../../../winix/core/crypt.h funregistermail_showusers.o: ../../../../winix/winixd/core/crypt.h
funregistermail_showusers.o: ../../../winix/core/run.h funregistermail_showusers.o: ../../../../winix/winixd/core/run.h
funregistermail_showusers.o: ../../../winix/core/users.h funregistermail_showusers.o: ../../../../winix/winixd/core/users.h
funregistermail_showusers.o: ../../../winix/core/groups.h funregistermail_showusers.o: ../../../../winix/winixd/core/groups.h
funregistermail_showusers.o: ../../../winix/core/group.h funregistermail_showusers.o: ../../../../winix/winixd/core/group.h
funregistermail_showusers.o: ../../../winix/core/loadavg.h funregistermail_showusers.o: ../../../../winix/winixd/core/loadavg.h
funregistermail_showusers.o: ../../../winix/core/image.h funregistermail_showusers.o: ../../../../winix/winixd/core/image.h
funregistermail_showusers.o: ../../../winix/core/threadmanager.h funregistermail_showusers.o: ../../../../winix/winixd/core/threadmanager.h
funregistermail_showusers.o: ../../../winix/core/timezones.h funregistermail_showusers.o: ../../../../winix/winixd/core/timezones.h
funregistermail_showusers.o: ../../../winix/core/timezone.h funregistermail_showusers.o: ../../../../winix/winixd/core/timezone.h
funregistermail_showusers.o: ../../../winix/core/synchro.h funregistermail_showusers.o: ../../../../winix/winixd/core/synchro.h
funregistermail_showusers.o: registermail_info.h mdb.h funregistermail_showusers.o: registermail_info.h mdb.h
funregistermail_showusers.o: ../../../winix/db/dbbase.h funregistermail_showusers.o: ../../../../winix/winixd/db/dbbase.h
funregistermail_showusers.o: ../../../winix/core/dirs.h funregistermail_showusers.o: ../../../../winix/winixd/core/dirs.h
init.o: ../../../winix/core/log.h ../../../winix/core/textstream.h init.o: ../../../../winix/winixd/core/log.h
init.o: ../../../winix/core/logmanipulators.h init.o: ../../../../winix/winixd/core/textstream.h
init.o: ../../../pikotools/textstream/textstream.h init.o: ../../../../winix/winixd/core/logmanipulators.h
init.o: ../../../pikotools/space/space.h init.o: ../../../../pikotools/textstream/textstream.h
init.o: ../../../pikotools/textstream/types.h ../../../pikotools/date/date.h init.o: ../../../../pikotools/space/space.h
init.o: ../../../pikotools/convert/convert.h init.o: ../../../../pikotools/textstream/types.h
init.o: ../../../pikotools/convert/inttostr.h init.o: ../../../../pikotools/date/date.h
init.o: ../../../pikotools/membuffer/membuffer.h init.o: ../../../../pikotools/convert/convert.h
init.o: ../../../pikotools/textstream/types.h ../../../winix/core/slog.h init.o: ../../../../pikotools/convert/inttostr.h
init.o: ../../../winix/core/cur.h ../../../winix/core/request.h init.o: ../../../../pikotools/membuffer/membuffer.h
init.o: ../../../winix/core/requesttypes.h ../../../winix/core/item.h init.o: ../../../../pikotools/textstream/types.h
init.o: ../../../winix/core/error.h ../../../winix/core/config.h init.o: ../../../../winix/winixd/core/slog.h
init.o: ../../../pikotools/space/spaceparser.h init.o: ../../../../winix/winixd/core/cur.h
init.o: ../../../pikotools/space/space.h ../../../winix/core/htmlfilter.h init.o: ../../../../winix/winixd/core/request.h
init.o: ../../../winix/templates/htmltextstream.h init.o: ../../../../winix/winixd/core/requesttypes.h
init.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h init.o: ../../../../winix/winixd/core/item.h
init.o: ../../../pikotools/utf8/utf8.h ../../../winix/core/winix_const.h init.o: ../../../../winix/winixd/core/error.h
init.o: ../../../pikotools/space/spacetojson.h ../../../ezc/src/outstreams.h init.o: ../../../../winix/winixd/core/config.h
init.o: ../../../winix/core/session.h ../../../winix/core/user.h init.o: ../../../../pikotools/space/spaceparser.h
init.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h init.o: ../../../../pikotools/space/space.h
init.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h init.o: ../../../../winix/winixd/core/htmlfilter.h
init.o: ../../../winix/templates/locale.h ../../../winix/core/plugin.h init.o: ../../../../winix/winixd/templates/htmltextstream.h
init.o: ../../../winix/core/pluginmsg.h ../../../winix/core/log.h init.o: ../../../../winix/winixd/core/textstream.h
init.o: ../../../winix/core/system.h ../../../winix/core/job.h init.o: ../../../../winix/winixd/core/misc.h
init.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h init.o: ../../../../pikotools/utf8/utf8.h
init.o: ../../../winix/core/dirs.h ../../../winix/core/dircontainer.h init.o: ../../../../winix/winixd/core/winix_const.h
init.o: ../../../winix/db/db.h ../../../winix/db/dbbase.h init.o: ../../../../pikotools/space/spacetojson.h
init.o: ../../../winix/db/dbconn.h ../../../winix/db/dbtextstream.h init.o: ../../../../ezc/src/outstreams.h
init.o: ../../../winix/core/error.h ../../../winix/db/dbitemquery.h init.o: ../../../../winix/winixd/core/session.h
init.o: ../../../winix/core/item.h ../../../winix/db/dbitemcolumns.h init.o: ../../../../winix/winixd/core/user.h
init.o: ../../../winix/core/user.h ../../../winix/core/group.h init.o: ../../../../winix/winixd/core/plugindata.h
init.o: ../../../winix/core/dircontainer.h ../../../winix/core/ugcontainer.h init.o: ../../../../winix/winixd/core/rebus.h
init.o: ../../../winix/notify/notify.h ../../../winix/notify/notifypool.h init.o: ../../../../winix/winixd/core/ipban.h
init.o: ../../../winix/templates/patterns.h ../../../winix/templates/locale.h init.o: ../../../../winix/winixd/core/mount.h
init.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h init.o: ../../../../winix/winixd/templates/locale.h
init.o: ../../../ezc/src/generator.h ../../../ezc/src/blocks.h init.o: ../../../../winix/winixd/core/plugin.h
init.o: ../../../ezc/src/cache.h ../../../ezc/src/functions.h init.o: ../../../../winix/winixd/core/pluginmsg.h
init.o: ../../../ezc/src/funinfo.h ../../../ezc/src/objects.h init.o: ../../../../winix/winixd/core/log.h
init.o: ../../../ezc/src/pattern.h ../../../ezc/src/patternparser.h init.o: ../../../../winix/winixd/core/system.h
init.o: ../../../winix/notify/notifythread.h ../../../winix/core/basethread.h init.o: ../../../../winix/winixd/core/job.h
init.o: ../../../winix/notify/templatesnotify.h ../../../winix/core/config.h init.o: ../../../../winix/winixd/core/basethread.h
init.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h init.o: ../../../../winix/winixd/core/synchro.h
init.o: ../../../winix/core/lastcontainer.h ../../../winix/core/mounts.h init.o: ../../../../winix/winixd/core/dirs.h
init.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h init.o: ../../../../winix/winixd/core/dircontainer.h
init.o: ../../../winix/core/run.h ../../../winix/core/users.h init.o: ../../../../winix/winixd/db/db.h ../../../../winix/winixd/db/dbbase.h
init.o: ../../../winix/core/groups.h ../../../winix/core/group.h init.o: ../../../../winix/winixd/db/dbconn.h
init.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h init.o: ../../../../winix/winixd/db/dbtextstream.h
init.o: ../../../winix/core/threadmanager.h ../../../winix/core/timezones.h init.o: ../../../../winix/winixd/core/error.h
init.o: ../../../winix/core/timezone.h ../../../winix/core/sessionmanager.h init.o: ../../../../winix/winixd/db/dbitemquery.h
init.o: ../../../winix/core/sessioncontainer.h init.o: ../../../../winix/winixd/core/item.h
init.o: ../../../winix/core/ipbancontainer.h init.o: ../../../../winix/winixd/db/dbitemcolumns.h
init.o: ../../../winix/core/sessionidmanager.h ../../../tito/src/base64.h init.o: ../../../../winix/winixd/core/user.h
init.o: ../../../tito/src/aes.h ../../../winix/functions/functions.h init.o: ../../../../winix/winixd/core/group.h
init.o: ../../../winix/functions/functionbase.h ../../../winix/core/request.h init.o: ../../../../winix/winixd/core/dircontainer.h
init.o: ../../../winix/core/system.h ../../../winix/core/synchro.h init.o: ../../../../winix/winixd/core/ugcontainer.h
init.o: ../../../winix/functions/functionparser.h ../../../winix/core/cur.h init.o: ../../../../winix/winixd/notify/notify.h
init.o: ../../../winix/functions/account.h ../../../winix/functions/adduser.h init.o: ../../../../winix/winixd/notify/notifypool.h
init.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h init.o: ../../../../winix/winixd/templates/patterns.h
init.o: ../../../winix/functions/privchanger.h init.o: ../../../../winix/winixd/templates/locale.h
init.o: ../../../winix/functions/chown.h ../../../winix/functions/ckeditor.h init.o: ../../../../winix/winixd/templates/localefilter.h
init.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h init.o: ../../../../ezc/src/ezc.h ../../../../ezc/src/generator.h
init.o: ../../../winix/functions/download.h ../../../winix/functions/emacs.h init.o: ../../../../ezc/src/blocks.h ../../../../ezc/src/cache.h
init.o: ../../../winix/functions/env.h ../../../winix/functions/imgcrop.h init.o: ../../../../ezc/src/functions.h ../../../../ezc/src/funinfo.h
init.o: ../../../winix/functions/last.h ../../../winix/functions/login.h init.o: ../../../../ezc/src/objects.h ../../../../ezc/src/pattern.h
init.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h init.o: ../../../../ezc/src/patternparser.h
init.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h init.o: ../../../../winix/winixd/notify/notifythread.h
init.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h init.o: ../../../../winix/winixd/core/basethread.h
init.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h init.o: ../../../../winix/winixd/notify/templatesnotify.h
init.o: ../../../winix/functions/node.h ../../../winix/functions/passwd.h init.o: ../../../../winix/winixd/core/config.h
init.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h init.o: ../../../../winix/winixd/core/users.h
init.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h init.o: ../../../../winix/winixd/core/ugcontainer.h
init.o: ../../../winix/functions/rmuser.h ../../../winix/functions/sort.h init.o: ../../../../winix/winixd/core/lastcontainer.h
init.o: ../../../winix/functions/specialdefault.h init.o: ../../../../winix/winixd/core/mounts.h
init.o: ../../../winix/functions/stat.h ../../../winix/functions/subject.h init.o: ../../../../winix/winixd/core/mountparser.h
init.o: ../../../winix/functions/template.h init.o: ../../../../winix/winixd/core/crypt.h
init.o: ../../../winix/functions/tinymce.h ../../../winix/functions/uname.h init.o: ../../../../winix/winixd/core/run.h
init.o: ../../../winix/functions/upload.h ../../../winix/functions/uptime.h init.o: ../../../../winix/winixd/core/users.h
init.o: ../../../winix/functions/who.h ../../../winix/functions/vim.h init.o: ../../../../winix/winixd/core/groups.h
init.o: ../../../winix/core/htmlfilter.h ../../../winix/templates/templates.h init.o: ../../../../winix/winixd/core/group.h
init.o: ../../../winix/templates/patterncacher.h init.o: ../../../../winix/winixd/core/loadavg.h
init.o: ../../../winix/templates/indexpatterns.h init.o: ../../../../winix/winixd/core/image.h
init.o: ../../../winix/templates/patterns.h init.o: ../../../../winix/winixd/core/threadmanager.h
init.o: ../../../winix/templates/changepatterns.h init.o: ../../../../winix/winixd/core/timezones.h
init.o: ../../../winix/templates/htmltextstream.h init.o: ../../../../winix/winixd/core/timezone.h
init.o: ../../../winix/core/sessionmanager.h mdb.h ../../../winix/db/dbbase.h init.o: ../../../../winix/winixd/core/sessionmanager.h
init.o: ../../../winix/core/dirs.h funregistermail.h init.o: ../../../../winix/winixd/core/sessioncontainer.h
init.o: ../../../winix/functions/functionbase.h registermail_info.h init.o: ../../../../winix/winixd/core/ipbancontainer.h
init.o: ../../../../winix/winixd/core/sessionidmanager.h
init.o: ../../../../tito/src/base64.h ../../../../tito/src/aes.h
init.o: ../../../../winix/winixd/functions/functions.h
init.o: ../../../../winix/winixd/functions/functionbase.h
init.o: ../../../../winix/winixd/core/request.h
init.o: ../../../../winix/winixd/core/system.h
init.o: ../../../../winix/winixd/core/synchro.h
init.o: ../../../../winix/winixd/functions/functionparser.h
init.o: ../../../../winix/winixd/core/cur.h
init.o: ../../../../winix/winixd/functions/account.h
init.o: ../../../../winix/winixd/functions/adduser.h
init.o: ../../../../winix/winixd/functions/cat.h
init.o: ../../../../winix/winixd/functions/chmod.h
init.o: ../../../../winix/winixd/functions/privchanger.h
init.o: ../../../../winix/winixd/functions/chown.h
init.o: ../../../../winix/winixd/functions/ckeditor.h
init.o: ../../../../winix/winixd/functions/cp.h
init.o: ../../../../winix/winixd/functions/default.h
init.o: ../../../../winix/winixd/functions/download.h
init.o: ../../../../winix/winixd/functions/emacs.h
init.o: ../../../../winix/winixd/functions/env.h
init.o: ../../../../winix/winixd/functions/imgcrop.h
init.o: ../../../../winix/winixd/functions/last.h
init.o: ../../../../winix/winixd/functions/login.h
init.o: ../../../../winix/winixd/functions/logout.h
init.o: ../../../../winix/winixd/functions/ln.h
init.o: ../../../../winix/winixd/functions/ls.h
init.o: ../../../../winix/winixd/functions/man.h
init.o: ../../../../winix/winixd/functions/meta.h
init.o: ../../../../winix/winixd/functions/mkdir.h
init.o: ../../../../winix/winixd/functions/mv.h
init.o: ../../../../winix/winixd/functions/nicedit.h
init.o: ../../../../winix/winixd/functions/node.h
init.o: ../../../../winix/winixd/functions/passwd.h
init.o: ../../../../winix/winixd/functions/priv.h
init.o: ../../../../winix/winixd/functions/pw.h
init.o: ../../../../winix/winixd/functions/reload.h
init.o: ../../../../winix/winixd/functions/rm.h
init.o: ../../../../winix/winixd/functions/rmuser.h
init.o: ../../../../winix/winixd/functions/sort.h
init.o: ../../../../winix/winixd/functions/specialdefault.h
init.o: ../../../../winix/winixd/functions/stat.h
init.o: ../../../../winix/winixd/functions/subject.h
init.o: ../../../../winix/winixd/functions/template.h
init.o: ../../../../winix/winixd/functions/tinymce.h
init.o: ../../../../winix/winixd/functions/uname.h
init.o: ../../../../winix/winixd/functions/upload.h
init.o: ../../../../winix/winixd/functions/uptime.h
init.o: ../../../../winix/winixd/functions/who.h
init.o: ../../../../winix/winixd/functions/vim.h
init.o: ../../../../winix/winixd/core/htmlfilter.h
init.o: ../../../../winix/winixd/templates/templates.h
init.o: ../../../../winix/winixd/templates/patterncacher.h
init.o: ../../../../winix/winixd/templates/indexpatterns.h
init.o: ../../../../winix/winixd/templates/patterns.h
init.o: ../../../../winix/winixd/templates/changepatterns.h
init.o: ../../../../winix/winixd/templates/htmltextstream.h
init.o: ../../../../winix/winixd/core/sessionmanager.h mdb.h
init.o: ../../../../winix/winixd/db/dbbase.h
init.o: ../../../../winix/winixd/core/dirs.h funregistermail.h
init.o: ../../../../winix/winixd/functions/functionbase.h registermail_info.h
init.o: funregistermail_showusers.h init.o: funregistermail_showusers.h
mdb.o: mdb.h ../../../winix/db/dbbase.h ../../../winix/core/dirs.h mdb.o: mdb.h ../../../../winix/winixd/db/dbbase.h
mdb.o: ../../../winix/core/log.h ../../../winix/core/textstream.h mdb.o: ../../../../winix/winixd/core/dirs.h
mdb.o: ../../../winix/core/logmanipulators.h mdb.o: ../../../../winix/winixd/core/log.h
mdb.o: ../../../pikotools/textstream/textstream.h mdb.o: ../../../../winix/winixd/core/textstream.h
mdb.o: ../../../pikotools/space/space.h ../../../pikotools/textstream/types.h mdb.o: ../../../../winix/winixd/core/logmanipulators.h
mdb.o: ../../../pikotools/date/date.h ../../../pikotools/convert/convert.h mdb.o: ../../../../pikotools/textstream/textstream.h
mdb.o: ../../../pikotools/convert/inttostr.h mdb.o: ../../../../pikotools/space/space.h
mdb.o: ../../../pikotools/membuffer/membuffer.h mdb.o: ../../../../pikotools/textstream/types.h
mdb.o: ../../../pikotools/textstream/types.h ../../../winix/core/slog.h mdb.o: ../../../../pikotools/date/date.h
mdb.o: ../../../winix/core/cur.h ../../../winix/core/request.h mdb.o: ../../../../pikotools/convert/convert.h
mdb.o: ../../../winix/core/requesttypes.h ../../../winix/core/item.h mdb.o: ../../../../pikotools/convert/inttostr.h
mdb.o: ../../../winix/core/error.h ../../../winix/core/config.h mdb.o: ../../../../pikotools/membuffer/membuffer.h
mdb.o: ../../../pikotools/space/spaceparser.h mdb.o: ../../../../pikotools/textstream/types.h
mdb.o: ../../../pikotools/space/space.h ../../../winix/core/htmlfilter.h mdb.o: ../../../../winix/winixd/core/slog.h
mdb.o: ../../../winix/templates/htmltextstream.h mdb.o: ../../../../winix/winixd/core/cur.h
mdb.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h mdb.o: ../../../../winix/winixd/core/request.h
mdb.o: ../../../pikotools/utf8/utf8.h ../../../winix/core/winix_const.h mdb.o: ../../../../winix/winixd/core/requesttypes.h
mdb.o: ../../../pikotools/space/spacetojson.h ../../../ezc/src/outstreams.h mdb.o: ../../../../winix/winixd/core/item.h
mdb.o: ../../../winix/core/session.h ../../../winix/core/user.h mdb.o: ../../../../winix/winixd/core/error.h
mdb.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h mdb.o: ../../../../winix/winixd/core/config.h
mdb.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h mdb.o: ../../../../pikotools/space/spaceparser.h
mdb.o: ../../../winix/templates/locale.h mdb.o: ../../../../pikotools/space/space.h
mdb.o: ../../../../winix/winixd/core/htmlfilter.h
mdb.o: ../../../../winix/winixd/templates/htmltextstream.h
mdb.o: ../../../../winix/winixd/core/textstream.h
mdb.o: ../../../../winix/winixd/core/misc.h ../../../../pikotools/utf8/utf8.h
mdb.o: ../../../../winix/winixd/core/winix_const.h
mdb.o: ../../../../pikotools/space/spacetojson.h
mdb.o: ../../../../ezc/src/outstreams.h
mdb.o: ../../../../winix/winixd/core/session.h
mdb.o: ../../../../winix/winixd/core/user.h
mdb.o: ../../../../winix/winixd/core/plugindata.h
mdb.o: ../../../../winix/winixd/core/rebus.h
mdb.o: ../../../../winix/winixd/core/ipban.h
mdb.o: ../../../../winix/winixd/core/mount.h
mdb.o: ../../../../winix/winixd/templates/locale.h
registermail_info.o: registermail_info.h registermail_info.o: registermail_info.h
templates.o: ../../../winix/templates/templates.h ../../../ezc/src/ezc.h templates.o: ../../../../winix/winixd/templates/templates.h
templates.o: ../../../ezc/src/generator.h ../../../ezc/src/blocks.h templates.o: ../../../../ezc/src/ezc.h ../../../../ezc/src/generator.h
templates.o: ../../../winix/core/item.h ../../../ezc/src/cache.h templates.o: ../../../../ezc/src/blocks.h
templates.o: ../../../ezc/src/functions.h ../../../pikotools/utf8/utf8.h templates.o: ../../../../winix/winixd/core/item.h ../../../../ezc/src/cache.h
templates.o: ../../../ezc/src/funinfo.h ../../../ezc/src/objects.h templates.o: ../../../../ezc/src/functions.h
templates.o: ../../../ezc/src/pattern.h ../../../ezc/src/outstreams.h templates.o: ../../../../pikotools/utf8/utf8.h ../../../../ezc/src/funinfo.h
templates.o: ../../../ezc/src/patternparser.h ../../../winix/core/misc.h templates.o: ../../../../ezc/src/objects.h ../../../../ezc/src/pattern.h
templates.o: ../../../winix/core/requesttypes.h templates.o: ../../../../ezc/src/outstreams.h
templates.o: ../../../pikotools/textstream/textstream.h templates.o: ../../../../ezc/src/patternparser.h
templates.o: ../../../pikotools/space/space.h templates.o: ../../../../winix/winixd/core/misc.h
templates.o: ../../../pikotools/textstream/types.h templates.o: ../../../../winix/winixd/core/requesttypes.h
templates.o: ../../../pikotools/date/date.h templates.o: ../../../../pikotools/textstream/textstream.h
templates.o: ../../../pikotools/convert/convert.h templates.o: ../../../../pikotools/space/space.h
templates.o: ../../../pikotools/convert/inttostr.h templates.o: ../../../../pikotools/textstream/types.h
templates.o: ../../../pikotools/membuffer/membuffer.h templates.o: ../../../../pikotools/date/date.h
templates.o: ../../../pikotools/textstream/types.h templates.o: ../../../../pikotools/convert/convert.h
templates.o: ../../../winix/core/winix_const.h templates.o: ../../../../pikotools/convert/inttostr.h
templates.o: ../../../winix/templates/patterncacher.h templates.o: ../../../../pikotools/membuffer/membuffer.h
templates.o: ../../../winix/core/item.h templates.o: ../../../../pikotools/textstream/types.h
templates.o: ../../../winix/templates/indexpatterns.h templates.o: ../../../../winix/winixd/core/winix_const.h
templates.o: ../../../winix/templates/patterns.h templates.o: ../../../../winix/winixd/templates/patterncacher.h
templates.o: ../../../winix/templates/locale.h templates.o: ../../../../winix/winixd/core/item.h
templates.o: ../../../winix/templates/changepatterns.h templates.o: ../../../../winix/winixd/templates/indexpatterns.h
templates.o: ../../../winix/templates/htmltextstream.h templates.o: ../../../../winix/winixd/templates/patterns.h
templates.o: ../../../winix/templates/localefilter.h templates.o: ../../../../winix/winixd/templates/locale.h
templates.o: ../../../winix/core/config.h ../../../winix/core/cur.h templates.o: ../../../../winix/winixd/templates/changepatterns.h
templates.o: ../../../winix/core/system.h ../../../winix/core/job.h templates.o: ../../../../winix/winixd/templates/htmltextstream.h
templates.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h templates.o: ../../../../winix/winixd/templates/localefilter.h
templates.o: ../../../winix/core/dirs.h ../../../winix/core/dircontainer.h templates.o: ../../../../winix/winixd/core/config.h
templates.o: ../../../winix/db/db.h ../../../winix/db/dbbase.h templates.o: ../../../../winix/winixd/core/cur.h
templates.o: ../../../winix/db/dbconn.h ../../../winix/db/dbtextstream.h templates.o: ../../../../winix/winixd/core/system.h
templates.o: ../../../winix/core/textstream.h ../../../winix/core/error.h templates.o: ../../../../winix/winixd/core/job.h
templates.o: ../../../pikotools/space/spaceparser.h templates.o: ../../../../winix/winixd/core/basethread.h
templates.o: ../../../pikotools/space/space.h ../../../winix/db/dbitemquery.h templates.o: ../../../../winix/winixd/core/synchro.h
templates.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h templates.o: ../../../../winix/winixd/core/dirs.h
templates.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h templates.o: ../../../../winix/winixd/core/dircontainer.h
templates.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h templates.o: ../../../../winix/winixd/db/db.h
templates.o: ../../../winix/core/textstream.h templates.o: ../../../../winix/winixd/db/dbbase.h
templates.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h templates.o: ../../../../winix/winixd/db/dbconn.h
templates.o: ../../../winix/core/cur.h ../../../winix/core/request.h templates.o: ../../../../winix/winixd/db/dbtextstream.h
templates.o: ../../../winix/core/error.h ../../../winix/core/config.h templates.o: ../../../../winix/winixd/core/textstream.h
templates.o: ../../../winix/core/htmlfilter.h templates.o: ../../../../winix/winixd/core/error.h
templates.o: ../../../winix/templates/htmltextstream.h templates.o: ../../../../pikotools/space/spaceparser.h
templates.o: ../../../pikotools/space/spacetojson.h templates.o: ../../../../pikotools/space/space.h
templates.o: ../../../winix/core/session.h ../../../winix/core/user.h templates.o: ../../../../winix/winixd/db/dbitemquery.h
templates.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h templates.o: ../../../../winix/winixd/db/dbitemcolumns.h
templates.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h templates.o: ../../../../winix/winixd/core/user.h
templates.o: ../../../winix/templates/locale.h ../../../winix/notify/notify.h templates.o: ../../../../winix/winixd/core/group.h
templates.o: ../../../winix/notify/notifypool.h templates.o: ../../../../winix/winixd/core/dircontainer.h
templates.o: ../../../winix/templates/patterns.h templates.o: ../../../../winix/winixd/core/ugcontainer.h
templates.o: ../../../winix/notify/notifythread.h templates.o: ../../../../winix/winixd/core/log.h
templates.o: ../../../winix/core/basethread.h templates.o: ../../../../winix/winixd/core/textstream.h
templates.o: ../../../winix/notify/templatesnotify.h templates.o: ../../../../winix/winixd/core/logmanipulators.h
templates.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h templates.o: ../../../../winix/winixd/core/slog.h
templates.o: ../../../winix/core/lastcontainer.h ../../../winix/core/mounts.h templates.o: ../../../../winix/winixd/core/cur.h
templates.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h templates.o: ../../../../winix/winixd/core/request.h
templates.o: ../../../winix/core/run.h ../../../winix/core/users.h templates.o: ../../../../winix/winixd/core/error.h
templates.o: ../../../winix/core/groups.h ../../../winix/core/group.h templates.o: ../../../../winix/winixd/core/config.h
templates.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h templates.o: ../../../../winix/winixd/core/htmlfilter.h
templates.o: ../../../winix/core/threadmanager.h templates.o: ../../../../winix/winixd/templates/htmltextstream.h
templates.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h templates.o: ../../../../pikotools/space/spacetojson.h
templates.o: ../../../winix/core/sessionmanager.h templates.o: ../../../../winix/winixd/core/session.h
templates.o: ../../../winix/core/htmlfilter.h ../../../winix/core/plugin.h templates.o: ../../../../winix/winixd/core/user.h
templates.o: ../../../winix/core/pluginmsg.h ../../../winix/core/system.h templates.o: ../../../../winix/winixd/core/plugindata.h
templates.o: ../../../winix/core/sessionmanager.h templates.o: ../../../../winix/winixd/core/rebus.h
templates.o: ../../../winix/core/sessioncontainer.h templates.o: ../../../../winix/winixd/core/ipban.h
templates.o: ../../../winix/core/ipbancontainer.h templates.o: ../../../../winix/winixd/core/mount.h
templates.o: ../../../winix/core/sessionidmanager.h templates.o: ../../../../winix/winixd/templates/locale.h
templates.o: ../../../tito/src/base64.h ../../../tito/src/aes.h templates.o: ../../../../winix/winixd/notify/notify.h
templates.o: ../../../winix/functions/functions.h templates.o: ../../../../winix/winixd/notify/notifypool.h
templates.o: ../../../winix/functions/functionbase.h templates.o: ../../../../winix/winixd/templates/patterns.h
templates.o: ../../../winix/core/request.h ../../../winix/core/synchro.h templates.o: ../../../../winix/winixd/notify/notifythread.h
templates.o: ../../../winix/functions/functionparser.h templates.o: ../../../../winix/winixd/core/basethread.h
templates.o: ../../../winix/functions/account.h templates.o: ../../../../winix/winixd/notify/templatesnotify.h
templates.o: ../../../winix/functions/adduser.h templates.o: ../../../../winix/winixd/core/users.h
templates.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h templates.o: ../../../../winix/winixd/core/ugcontainer.h
templates.o: ../../../winix/functions/privchanger.h templates.o: ../../../../winix/winixd/core/lastcontainer.h
templates.o: ../../../winix/functions/chown.h templates.o: ../../../../winix/winixd/core/mounts.h
templates.o: ../../../winix/functions/ckeditor.h templates.o: ../../../../winix/winixd/core/mountparser.h
templates.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h templates.o: ../../../../winix/winixd/core/crypt.h
templates.o: ../../../winix/functions/download.h templates.o: ../../../../winix/winixd/core/run.h
templates.o: ../../../winix/functions/emacs.h ../../../winix/functions/env.h templates.o: ../../../../winix/winixd/core/users.h
templates.o: ../../../winix/functions/imgcrop.h templates.o: ../../../../winix/winixd/core/groups.h
templates.o: ../../../winix/functions/last.h ../../../winix/functions/login.h templates.o: ../../../../winix/winixd/core/group.h
templates.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h templates.o: ../../../../winix/winixd/core/loadavg.h
templates.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h templates.o: ../../../../winix/winixd/core/image.h
templates.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h templates.o: ../../../../winix/winixd/core/threadmanager.h
templates.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h templates.o: ../../../../winix/winixd/core/timezones.h
templates.o: ../../../winix/functions/node.h templates.o: ../../../../winix/winixd/core/timezone.h
templates.o: ../../../winix/functions/passwd.h templates.o: ../../../../winix/winixd/core/sessionmanager.h
templates.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h templates.o: ../../../../winix/winixd/core/htmlfilter.h
templates.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h templates.o: ../../../../winix/winixd/core/plugin.h
templates.o: ../../../winix/functions/rmuser.h templates.o: ../../../../winix/winixd/core/pluginmsg.h
templates.o: ../../../winix/functions/sort.h templates.o: ../../../../winix/winixd/core/system.h
templates.o: ../../../winix/functions/specialdefault.h templates.o: ../../../../winix/winixd/core/sessionmanager.h
templates.o: ../../../winix/functions/stat.h templates.o: ../../../../winix/winixd/core/sessioncontainer.h
templates.o: ../../../winix/functions/subject.h templates.o: ../../../../winix/winixd/core/ipbancontainer.h
templates.o: ../../../winix/functions/template.h templates.o: ../../../../winix/winixd/core/sessionidmanager.h
templates.o: ../../../winix/functions/tinymce.h templates.o: ../../../../tito/src/base64.h ../../../../tito/src/aes.h
templates.o: ../../../winix/functions/uname.h templates.o: ../../../../winix/winixd/functions/functions.h
templates.o: ../../../winix/functions/upload.h templates.o: ../../../../winix/winixd/functions/functionbase.h
templates.o: ../../../winix/functions/uptime.h ../../../winix/functions/who.h templates.o: ../../../../winix/winixd/core/request.h
templates.o: ../../../winix/functions/vim.h ../../../winix/core/log.h templates.o: ../../../../winix/winixd/core/synchro.h
templates.o: ../../../winix/core/misc.h ../../../winix/templates/miscspace.h templates.o: ../../../../winix/winixd/functions/functionparser.h
templates.o: ../../../winix/templates/templates.h registermail_info.h templates.o: ../../../../winix/winixd/functions/account.h
templates.o: ../../../../winix/winixd/functions/adduser.h
templates.o: ../../../../winix/winixd/functions/cat.h
templates.o: ../../../../winix/winixd/functions/chmod.h
templates.o: ../../../../winix/winixd/functions/privchanger.h
templates.o: ../../../../winix/winixd/functions/chown.h
templates.o: ../../../../winix/winixd/functions/ckeditor.h
templates.o: ../../../../winix/winixd/functions/cp.h
templates.o: ../../../../winix/winixd/functions/default.h
templates.o: ../../../../winix/winixd/functions/download.h
templates.o: ../../../../winix/winixd/functions/emacs.h
templates.o: ../../../../winix/winixd/functions/env.h
templates.o: ../../../../winix/winixd/functions/imgcrop.h
templates.o: ../../../../winix/winixd/functions/last.h
templates.o: ../../../../winix/winixd/functions/login.h
templates.o: ../../../../winix/winixd/functions/logout.h
templates.o: ../../../../winix/winixd/functions/ln.h
templates.o: ../../../../winix/winixd/functions/ls.h
templates.o: ../../../../winix/winixd/functions/man.h
templates.o: ../../../../winix/winixd/functions/meta.h
templates.o: ../../../../winix/winixd/functions/mkdir.h
templates.o: ../../../../winix/winixd/functions/mv.h
templates.o: ../../../../winix/winixd/functions/nicedit.h
templates.o: ../../../../winix/winixd/functions/node.h
templates.o: ../../../../winix/winixd/functions/passwd.h
templates.o: ../../../../winix/winixd/functions/priv.h
templates.o: ../../../../winix/winixd/functions/pw.h
templates.o: ../../../../winix/winixd/functions/reload.h
templates.o: ../../../../winix/winixd/functions/rm.h
templates.o: ../../../../winix/winixd/functions/rmuser.h
templates.o: ../../../../winix/winixd/functions/sort.h
templates.o: ../../../../winix/winixd/functions/specialdefault.h
templates.o: ../../../../winix/winixd/functions/stat.h
templates.o: ../../../../winix/winixd/functions/subject.h
templates.o: ../../../../winix/winixd/functions/template.h
templates.o: ../../../../winix/winixd/functions/tinymce.h
templates.o: ../../../../winix/winixd/functions/uname.h
templates.o: ../../../../winix/winixd/functions/upload.h
templates.o: ../../../../winix/winixd/functions/uptime.h
templates.o: ../../../../winix/winixd/functions/who.h
templates.o: ../../../../winix/winixd/functions/vim.h
templates.o: ../../../../winix/winixd/core/log.h
templates.o: ../../../../winix/winixd/core/misc.h
templates.o: ../../../../winix/winixd/templates/miscspace.h
templates.o: ../../../../winix/winixd/templates/templates.h
templates.o: registermail_info.h

View File

@ -1,22 +1,27 @@
include Makefile.o.dep include Makefile.o.dep
current_path := $(shell pwd)
global_relative_working_dir := $(shell relative_path $(current_path) $(GLOBAL_WORKING_DIR))
winix_include_paths = -I$(global_relative_working_dir)/winix/winixd -I$(global_relative_working_dir)/ezc/src -I$(global_relative_working_dir)/tito/src -I$(global_relative_working_dir)/pikotools
name = menu.so name = menu.so
all: $(name) all: $(name)
$(name): $(o) $(name): $(o)
$(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $(LDFLAGS) *.o $(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(winix_include_paths) $(LDFLAGS) *.o
%.o: %.cpp %.o: %.cpp
$(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< $(CXX) -c $(CXXFLAGS) $(winix_include_paths) $<
depend: depend:
makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep makedepend -Y. $(winix_include_paths) -f- *.cpp > Makefile.dep
echo -n "o = " > Makefile.o.dep echo -n "o = " > Makefile.o.dep
ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep

View File

@ -1,234 +1,364 @@
# DO NOT DELETE # DO NOT DELETE
cache.o: cache.h ../../../winix/core/item.h ../../../pikotools/space/space.h cache.o: cache.h ../../../../winix/winixd/core/item.h
cache.o: ../../../pikotools/textstream/types.h ../../../pikotools/date/date.h cache.o: ../../../../pikotools/space/space.h
cache.o: ../../../winix/core/dirs.h ../../../winix/core/item.h cache.o: ../../../../pikotools/textstream/types.h
cache.o: ../../../winix/core/dircontainer.h ../../../winix/db/db.h cache.o: ../../../../pikotools/date/date.h
cache.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h cache.o: ../../../../winix/winixd/core/dirs.h
cache.o: ../../../winix/db/dbtextstream.h ../../../winix/core/textstream.h cache.o: ../../../../winix/winixd/core/item.h
cache.o: ../../../winix/core/misc.h ../../../winix/core/requesttypes.h cache.o: ../../../../winix/winixd/core/dircontainer.h
cache.o: ../../../pikotools/textstream/textstream.h cache.o: ../../../../winix/winixd/db/db.h
cache.o: ../../../pikotools/convert/convert.h cache.o: ../../../../winix/winixd/db/dbbase.h
cache.o: ../../../pikotools/convert/inttostr.h cache.o: ../../../../winix/winixd/db/dbconn.h
cache.o: ../../../pikotools/membuffer/membuffer.h cache.o: ../../../../winix/winixd/db/dbtextstream.h
cache.o: ../../../pikotools/textstream/types.h ../../../pikotools/utf8/utf8.h cache.o: ../../../../winix/winixd/core/textstream.h
cache.o: ../../../winix/core/winix_const.h ../../../winix/core/error.h cache.o: ../../../../winix/winixd/core/misc.h
cache.o: ../../../pikotools/space/spaceparser.h cache.o: ../../../../winix/winixd/core/requesttypes.h
cache.o: ../../../pikotools/space/space.h ../../../winix/db/dbitemquery.h cache.o: ../../../../pikotools/textstream/textstream.h
cache.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h cache.o: ../../../../pikotools/convert/convert.h
cache.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h cache.o: ../../../../pikotools/convert/inttostr.h
cache.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h cache.o: ../../../../pikotools/membuffer/membuffer.h
cache.o: ../../../winix/core/textstream.h cache.o: ../../../../pikotools/textstream/types.h
cache.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h cache.o: ../../../../pikotools/utf8/utf8.h
cache.o: ../../../winix/core/cur.h ../../../winix/core/request.h cache.o: ../../../../winix/winixd/core/winix_const.h
cache.o: ../../../winix/core/error.h ../../../winix/core/config.h cache.o: ../../../../winix/winixd/core/error.h
cache.o: ../../../winix/core/htmlfilter.h cache.o: ../../../../pikotools/space/spaceparser.h
cache.o: ../../../winix/templates/htmltextstream.h cache.o: ../../../../pikotools/space/space.h
cache.o: ../../../pikotools/space/spacetojson.h ../../../ezc/src/outstreams.h cache.o: ../../../../winix/winixd/db/dbitemquery.h
cache.o: ../../../winix/core/session.h ../../../winix/core/user.h cache.o: ../../../../winix/winixd/db/dbitemcolumns.h
cache.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h cache.o: ../../../../winix/winixd/core/user.h
cache.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h cache.o: ../../../../winix/winixd/core/group.h
cache.o: ../../../winix/templates/locale.h ../../../winix/notify/notify.h cache.o: ../../../../winix/winixd/core/dircontainer.h
cache.o: ../../../winix/notify/notifypool.h cache.o: ../../../../winix/winixd/core/ugcontainer.h
cache.o: ../../../winix/templates/patterns.h cache.o: ../../../../winix/winixd/core/log.h
cache.o: ../../../winix/templates/locale.h cache.o: ../../../../winix/winixd/core/textstream.h
cache.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h cache.o: ../../../../winix/winixd/core/logmanipulators.h
cache.o: ../../../ezc/src/generator.h ../../../ezc/src/blocks.h cache.o: ../../../../winix/winixd/core/slog.h
cache.o: ../../../ezc/src/pattern.h ../../../ezc/src/functions.h cache.o: ../../../../winix/winixd/core/cur.h
cache.o: ../../../ezc/src/funinfo.h ../../../ezc/src/objects.h cache.o: ../../../../winix/winixd/core/request.h
cache.o: ../../../ezc/src/patternparser.h cache.o: ../../../../winix/winixd/core/error.h
cache.o: ../../../winix/notify/notifythread.h cache.o: ../../../../winix/winixd/core/config.h
cache.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h cache.o: ../../../../winix/winixd/core/htmlfilter.h
cache.o: ../../../winix/notify/templatesnotify.h ../../../winix/core/config.h cache.o: ../../../../winix/winixd/templates/htmltextstream.h
cache.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h cache.o: ../../../../pikotools/space/spacetojson.h
cache.o: ../../../winix/core/lastcontainer.h ../../../winix/core/misc.h cache.o: ../../../../ezc/src/outstreams.h
init.o: ../../../winix/core/log.h ../../../winix/core/textstream.h cache.o: ../../../../winix/winixd/core/session.h
init.o: ../../../winix/core/logmanipulators.h cache.o: ../../../../winix/winixd/core/user.h
init.o: ../../../pikotools/textstream/textstream.h cache.o: ../../../../winix/winixd/core/plugindata.h
init.o: ../../../pikotools/space/space.h cache.o: ../../../../winix/winixd/core/rebus.h
init.o: ../../../pikotools/textstream/types.h ../../../pikotools/date/date.h cache.o: ../../../../winix/winixd/core/ipban.h
init.o: ../../../pikotools/convert/convert.h cache.o: ../../../../winix/winixd/core/mount.h
init.o: ../../../pikotools/convert/inttostr.h cache.o: ../../../../winix/winixd/templates/locale.h
init.o: ../../../pikotools/membuffer/membuffer.h cache.o: ../../../../winix/winixd/notify/notify.h
init.o: ../../../pikotools/textstream/types.h ../../../winix/core/slog.h cache.o: ../../../../winix/winixd/notify/notifypool.h
init.o: ../../../winix/core/cur.h ../../../winix/core/request.h cache.o: ../../../../winix/winixd/templates/patterns.h
init.o: ../../../winix/core/requesttypes.h ../../../winix/core/item.h cache.o: ../../../../winix/winixd/templates/locale.h
init.o: ../../../winix/core/error.h ../../../winix/core/config.h cache.o: ../../../../winix/winixd/templates/localefilter.h
init.o: ../../../pikotools/space/spaceparser.h cache.o: ../../../../ezc/src/ezc.h ../../../../ezc/src/generator.h
init.o: ../../../pikotools/space/space.h ../../../winix/core/htmlfilter.h cache.o: ../../../../ezc/src/blocks.h ../../../../ezc/src/pattern.h
init.o: ../../../winix/templates/htmltextstream.h cache.o: ../../../../ezc/src/functions.h ../../../../ezc/src/funinfo.h
init.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h cache.o: ../../../../ezc/src/objects.h ../../../../ezc/src/patternparser.h
init.o: ../../../pikotools/utf8/utf8.h ../../../winix/core/winix_const.h cache.o: ../../../../winix/winixd/notify/notifythread.h
init.o: ../../../pikotools/space/spacetojson.h ../../../ezc/src/outstreams.h cache.o: ../../../../winix/winixd/core/basethread.h
init.o: ../../../winix/core/session.h ../../../winix/core/user.h cache.o: ../../../../winix/winixd/core/synchro.h
init.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h cache.o: ../../../../winix/winixd/notify/templatesnotify.h
init.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h cache.o: ../../../../winix/winixd/core/config.h
init.o: ../../../winix/templates/locale.h ../../../winix/core/plugin.h cache.o: ../../../../winix/winixd/core/users.h
init.o: ../../../winix/core/pluginmsg.h ../../../winix/core/log.h cache.o: ../../../../winix/winixd/core/ugcontainer.h
init.o: ../../../winix/core/system.h ../../../winix/core/job.h cache.o: ../../../../winix/winixd/core/lastcontainer.h
init.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h cache.o: ../../../../winix/winixd/core/misc.h
init.o: ../../../winix/core/dirs.h ../../../winix/core/dircontainer.h init.o: ../../../../winix/winixd/core/log.h
init.o: ../../../winix/db/db.h ../../../winix/db/dbbase.h init.o: ../../../../winix/winixd/core/textstream.h
init.o: ../../../winix/db/dbconn.h ../../../winix/db/dbtextstream.h init.o: ../../../../winix/winixd/core/logmanipulators.h
init.o: ../../../winix/core/error.h ../../../winix/db/dbitemquery.h init.o: ../../../../pikotools/textstream/textstream.h
init.o: ../../../winix/core/item.h ../../../winix/db/dbitemcolumns.h init.o: ../../../../pikotools/space/space.h
init.o: ../../../winix/core/user.h ../../../winix/core/group.h init.o: ../../../../pikotools/textstream/types.h
init.o: ../../../winix/core/dircontainer.h ../../../winix/core/ugcontainer.h init.o: ../../../../pikotools/date/date.h
init.o: ../../../winix/notify/notify.h ../../../winix/notify/notifypool.h init.o: ../../../../pikotools/convert/convert.h
init.o: ../../../winix/templates/patterns.h ../../../winix/templates/locale.h init.o: ../../../../pikotools/convert/inttostr.h
init.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h init.o: ../../../../pikotools/membuffer/membuffer.h
init.o: ../../../ezc/src/generator.h ../../../ezc/src/blocks.h cache.h init.o: ../../../../pikotools/textstream/types.h
init.o: ../../../winix/core/dirs.h ../../../ezc/src/pattern.h init.o: ../../../../winix/winixd/core/slog.h
init.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h init.o: ../../../../winix/winixd/core/cur.h
init.o: ../../../ezc/src/objects.h ../../../ezc/src/patternparser.h init.o: ../../../../winix/winixd/core/request.h
init.o: ../../../winix/notify/notifythread.h ../../../winix/core/basethread.h init.o: ../../../../winix/winixd/core/requesttypes.h
init.o: ../../../winix/notify/templatesnotify.h ../../../winix/core/config.h init.o: ../../../../winix/winixd/core/item.h
init.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h init.o: ../../../../winix/winixd/core/error.h
init.o: ../../../winix/core/lastcontainer.h ../../../winix/core/mounts.h init.o: ../../../../winix/winixd/core/config.h
init.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h init.o: ../../../../pikotools/space/spaceparser.h
init.o: ../../../winix/core/run.h ../../../winix/core/users.h init.o: ../../../../pikotools/space/space.h
init.o: ../../../winix/core/groups.h ../../../winix/core/group.h init.o: ../../../../winix/winixd/core/htmlfilter.h
init.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h init.o: ../../../../winix/winixd/templates/htmltextstream.h
init.o: ../../../winix/core/threadmanager.h ../../../winix/core/timezones.h init.o: ../../../../winix/winixd/core/textstream.h
init.o: ../../../winix/core/timezone.h ../../../winix/core/sessionmanager.h init.o: ../../../../winix/winixd/core/misc.h
init.o: ../../../winix/core/sessioncontainer.h init.o: ../../../../pikotools/utf8/utf8.h
init.o: ../../../winix/core/ipbancontainer.h init.o: ../../../../winix/winixd/core/winix_const.h
init.o: ../../../winix/core/sessionidmanager.h ../../../tito/src/base64.h init.o: ../../../../pikotools/space/spacetojson.h
init.o: ../../../tito/src/aes.h ../../../winix/functions/functions.h init.o: ../../../../ezc/src/outstreams.h
init.o: ../../../winix/functions/functionbase.h ../../../winix/core/request.h init.o: ../../../../winix/winixd/core/session.h
init.o: ../../../winix/core/system.h ../../../winix/core/synchro.h init.o: ../../../../winix/winixd/core/user.h
init.o: ../../../winix/functions/functionparser.h ../../../winix/core/cur.h init.o: ../../../../winix/winixd/core/plugindata.h
init.o: ../../../winix/functions/account.h ../../../winix/functions/adduser.h init.o: ../../../../winix/winixd/core/rebus.h
init.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h init.o: ../../../../winix/winixd/core/ipban.h
init.o: ../../../winix/functions/privchanger.h init.o: ../../../../winix/winixd/core/mount.h
init.o: ../../../winix/functions/chown.h ../../../winix/functions/ckeditor.h init.o: ../../../../winix/winixd/templates/locale.h
init.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h init.o: ../../../../winix/winixd/core/plugin.h
init.o: ../../../winix/functions/download.h ../../../winix/functions/emacs.h init.o: ../../../../winix/winixd/core/pluginmsg.h
init.o: ../../../winix/functions/env.h ../../../winix/functions/imgcrop.h init.o: ../../../../winix/winixd/core/log.h
init.o: ../../../winix/functions/last.h ../../../winix/functions/login.h init.o: ../../../../winix/winixd/core/system.h
init.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h init.o: ../../../../winix/winixd/core/job.h
init.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h init.o: ../../../../winix/winixd/core/basethread.h
init.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h init.o: ../../../../winix/winixd/core/synchro.h
init.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h init.o: ../../../../winix/winixd/core/dirs.h
init.o: ../../../winix/functions/node.h ../../../winix/functions/passwd.h init.o: ../../../../winix/winixd/core/dircontainer.h
init.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h init.o: ../../../../winix/winixd/db/db.h ../../../../winix/winixd/db/dbbase.h
init.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h init.o: ../../../../winix/winixd/db/dbconn.h
init.o: ../../../winix/functions/rmuser.h ../../../winix/functions/sort.h init.o: ../../../../winix/winixd/db/dbtextstream.h
init.o: ../../../winix/functions/specialdefault.h init.o: ../../../../winix/winixd/core/error.h
init.o: ../../../winix/functions/stat.h ../../../winix/functions/subject.h init.o: ../../../../winix/winixd/db/dbitemquery.h
init.o: ../../../winix/functions/template.h init.o: ../../../../winix/winixd/core/item.h
init.o: ../../../winix/functions/tinymce.h ../../../winix/functions/uname.h init.o: ../../../../winix/winixd/db/dbitemcolumns.h
init.o: ../../../winix/functions/upload.h ../../../winix/functions/uptime.h init.o: ../../../../winix/winixd/core/user.h
init.o: ../../../winix/functions/who.h ../../../winix/functions/vim.h init.o: ../../../../winix/winixd/core/group.h
init.o: ../../../winix/core/htmlfilter.h ../../../winix/templates/templates.h init.o: ../../../../winix/winixd/core/dircontainer.h
init.o: ../../../winix/templates/patterncacher.h init.o: ../../../../winix/winixd/core/ugcontainer.h
init.o: ../../../winix/templates/indexpatterns.h init.o: ../../../../winix/winixd/notify/notify.h
init.o: ../../../winix/templates/patterns.h init.o: ../../../../winix/winixd/notify/notifypool.h
init.o: ../../../winix/templates/changepatterns.h init.o: ../../../../winix/winixd/templates/patterns.h
init.o: ../../../winix/templates/htmltextstream.h init.o: ../../../../winix/winixd/templates/locale.h
init.o: ../../../winix/core/sessionmanager.h init.o: ../../../../winix/winixd/templates/localefilter.h
templates.o: ../../../winix/templates/templates.h ../../../ezc/src/ezc.h init.o: ../../../../ezc/src/ezc.h ../../../../ezc/src/generator.h
templates.o: ../../../ezc/src/generator.h ../../../ezc/src/blocks.h init.o: ../../../../ezc/src/blocks.h cache.h
templates.o: ../../../winix/core/item.h cache.h ../../../winix/core/item.h init.o: ../../../../winix/winixd/core/dirs.h ../../../../ezc/src/pattern.h
templates.o: ../../../pikotools/space/space.h init.o: ../../../../ezc/src/functions.h ../../../../ezc/src/funinfo.h
templates.o: ../../../pikotools/textstream/types.h init.o: ../../../../ezc/src/objects.h ../../../../ezc/src/patternparser.h
templates.o: ../../../pikotools/date/date.h ../../../winix/core/dirs.h init.o: ../../../../winix/winixd/notify/notifythread.h
templates.o: ../../../winix/core/dircontainer.h ../../../winix/db/db.h init.o: ../../../../winix/winixd/core/basethread.h
templates.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h init.o: ../../../../winix/winixd/notify/templatesnotify.h
templates.o: ../../../winix/db/dbtextstream.h init.o: ../../../../winix/winixd/core/config.h
templates.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h init.o: ../../../../winix/winixd/core/users.h
templates.o: ../../../winix/core/requesttypes.h init.o: ../../../../winix/winixd/core/ugcontainer.h
templates.o: ../../../pikotools/textstream/textstream.h init.o: ../../../../winix/winixd/core/lastcontainer.h
templates.o: ../../../pikotools/convert/convert.h init.o: ../../../../winix/winixd/core/mounts.h
templates.o: ../../../pikotools/convert/inttostr.h init.o: ../../../../winix/winixd/core/mountparser.h
templates.o: ../../../pikotools/membuffer/membuffer.h init.o: ../../../../winix/winixd/core/crypt.h
templates.o: ../../../pikotools/textstream/types.h init.o: ../../../../winix/winixd/core/run.h
templates.o: ../../../pikotools/utf8/utf8.h ../../../winix/core/winix_const.h init.o: ../../../../winix/winixd/core/users.h
templates.o: ../../../winix/core/error.h init.o: ../../../../winix/winixd/core/groups.h
templates.o: ../../../pikotools/space/spaceparser.h init.o: ../../../../winix/winixd/core/group.h
templates.o: ../../../pikotools/space/space.h ../../../winix/db/dbitemquery.h init.o: ../../../../winix/winixd/core/loadavg.h
templates.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h init.o: ../../../../winix/winixd/core/image.h
templates.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h init.o: ../../../../winix/winixd/core/threadmanager.h
templates.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h init.o: ../../../../winix/winixd/core/timezones.h
templates.o: ../../../winix/core/textstream.h init.o: ../../../../winix/winixd/core/timezone.h
templates.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h init.o: ../../../../winix/winixd/core/sessionmanager.h
templates.o: ../../../winix/core/cur.h ../../../winix/core/request.h init.o: ../../../../winix/winixd/core/sessioncontainer.h
templates.o: ../../../winix/core/error.h ../../../winix/core/config.h init.o: ../../../../winix/winixd/core/ipbancontainer.h
templates.o: ../../../winix/core/htmlfilter.h init.o: ../../../../winix/winixd/core/sessionidmanager.h
templates.o: ../../../winix/templates/htmltextstream.h init.o: ../../../../tito/src/base64.h ../../../../tito/src/aes.h
templates.o: ../../../pikotools/space/spacetojson.h init.o: ../../../../winix/winixd/functions/functions.h
templates.o: ../../../ezc/src/outstreams.h ../../../winix/core/session.h init.o: ../../../../winix/winixd/functions/functionbase.h
templates.o: ../../../winix/core/user.h ../../../winix/core/plugindata.h init.o: ../../../../winix/winixd/core/request.h
templates.o: ../../../winix/core/rebus.h ../../../winix/core/ipban.h init.o: ../../../../winix/winixd/core/system.h
templates.o: ../../../winix/core/mount.h ../../../winix/templates/locale.h init.o: ../../../../winix/winixd/core/synchro.h
templates.o: ../../../winix/notify/notify.h init.o: ../../../../winix/winixd/functions/functionparser.h
templates.o: ../../../winix/notify/notifypool.h init.o: ../../../../winix/winixd/core/cur.h
templates.o: ../../../winix/templates/patterns.h init.o: ../../../../winix/winixd/functions/account.h
templates.o: ../../../winix/templates/locale.h init.o: ../../../../winix/winixd/functions/adduser.h
templates.o: ../../../winix/templates/localefilter.h init.o: ../../../../winix/winixd/functions/cat.h
templates.o: ../../../winix/notify/notifythread.h init.o: ../../../../winix/winixd/functions/chmod.h
templates.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h init.o: ../../../../winix/winixd/functions/privchanger.h
templates.o: ../../../winix/notify/templatesnotify.h init.o: ../../../../winix/winixd/functions/chown.h
templates.o: ../../../winix/core/config.h ../../../winix/core/users.h init.o: ../../../../winix/winixd/functions/ckeditor.h
templates.o: ../../../winix/core/ugcontainer.h init.o: ../../../../winix/winixd/functions/cp.h
templates.o: ../../../winix/core/lastcontainer.h ../../../ezc/src/pattern.h init.o: ../../../../winix/winixd/functions/default.h
templates.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h init.o: ../../../../winix/winixd/functions/download.h
templates.o: ../../../ezc/src/objects.h ../../../ezc/src/patternparser.h init.o: ../../../../winix/winixd/functions/emacs.h
templates.o: ../../../winix/templates/patterncacher.h init.o: ../../../../winix/winixd/functions/env.h
templates.o: ../../../winix/templates/indexpatterns.h init.o: ../../../../winix/winixd/functions/imgcrop.h
templates.o: ../../../winix/templates/patterns.h init.o: ../../../../winix/winixd/functions/last.h
templates.o: ../../../winix/templates/changepatterns.h init.o: ../../../../winix/winixd/functions/login.h
templates.o: ../../../winix/templates/htmltextstream.h init.o: ../../../../winix/winixd/functions/logout.h
templates.o: ../../../winix/core/cur.h ../../../winix/core/system.h init.o: ../../../../winix/winixd/functions/ln.h
templates.o: ../../../winix/core/sessionmanager.h init.o: ../../../../winix/winixd/functions/ls.h
templates.o: ../../../winix/core/htmlfilter.h ../../../winix/core/plugin.h init.o: ../../../../winix/winixd/functions/man.h
templates.o: ../../../winix/core/pluginmsg.h ../../../winix/core/system.h init.o: ../../../../winix/winixd/functions/meta.h
templates.o: ../../../winix/core/job.h ../../../winix/core/basethread.h init.o: ../../../../winix/winixd/functions/mkdir.h
templates.o: ../../../winix/core/dirs.h ../../../winix/core/mounts.h init.o: ../../../../winix/winixd/functions/mv.h
templates.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h init.o: ../../../../winix/winixd/functions/nicedit.h
templates.o: ../../../winix/core/run.h ../../../winix/core/users.h init.o: ../../../../winix/winixd/functions/node.h
templates.o: ../../../winix/core/groups.h ../../../winix/core/group.h init.o: ../../../../winix/winixd/functions/passwd.h
templates.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h init.o: ../../../../winix/winixd/functions/priv.h
templates.o: ../../../winix/core/threadmanager.h init.o: ../../../../winix/winixd/functions/pw.h
templates.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h init.o: ../../../../winix/winixd/functions/reload.h
templates.o: ../../../winix/core/sessionmanager.h init.o: ../../../../winix/winixd/functions/rm.h
templates.o: ../../../winix/core/sessioncontainer.h init.o: ../../../../winix/winixd/functions/rmuser.h
templates.o: ../../../winix/core/ipbancontainer.h init.o: ../../../../winix/winixd/functions/sort.h
templates.o: ../../../winix/core/sessionidmanager.h init.o: ../../../../winix/winixd/functions/specialdefault.h
templates.o: ../../../tito/src/base64.h ../../../tito/src/aes.h init.o: ../../../../winix/winixd/functions/stat.h
templates.o: ../../../winix/functions/functions.h init.o: ../../../../winix/winixd/functions/subject.h
templates.o: ../../../winix/functions/functionbase.h init.o: ../../../../winix/winixd/functions/template.h
templates.o: ../../../winix/core/request.h ../../../winix/core/synchro.h init.o: ../../../../winix/winixd/functions/tinymce.h
templates.o: ../../../winix/functions/functionparser.h init.o: ../../../../winix/winixd/functions/uname.h
templates.o: ../../../winix/functions/account.h init.o: ../../../../winix/winixd/functions/upload.h
templates.o: ../../../winix/functions/adduser.h init.o: ../../../../winix/winixd/functions/uptime.h
templates.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h init.o: ../../../../winix/winixd/functions/who.h
templates.o: ../../../winix/functions/privchanger.h init.o: ../../../../winix/winixd/functions/vim.h
templates.o: ../../../winix/functions/chown.h init.o: ../../../../winix/winixd/core/htmlfilter.h
templates.o: ../../../winix/functions/ckeditor.h init.o: ../../../../winix/winixd/templates/templates.h
templates.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h init.o: ../../../../winix/winixd/templates/patterncacher.h
templates.o: ../../../winix/functions/download.h init.o: ../../../../winix/winixd/templates/indexpatterns.h
templates.o: ../../../winix/functions/emacs.h ../../../winix/functions/env.h init.o: ../../../../winix/winixd/templates/patterns.h
templates.o: ../../../winix/functions/imgcrop.h init.o: ../../../../winix/winixd/templates/changepatterns.h
templates.o: ../../../winix/functions/last.h ../../../winix/functions/login.h init.o: ../../../../winix/winixd/templates/htmltextstream.h
templates.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h init.o: ../../../../winix/winixd/core/sessionmanager.h
templates.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h templates.o: ../../../../winix/winixd/templates/templates.h
templates.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h templates.o: ../../../../ezc/src/ezc.h ../../../../ezc/src/generator.h
templates.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h templates.o: ../../../../ezc/src/blocks.h
templates.o: ../../../winix/functions/node.h templates.o: ../../../../winix/winixd/core/item.h cache.h
templates.o: ../../../winix/functions/passwd.h templates.o: ../../../../winix/winixd/core/item.h
templates.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h templates.o: ../../../../pikotools/space/space.h
templates.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h templates.o: ../../../../pikotools/textstream/types.h
templates.o: ../../../winix/functions/rmuser.h templates.o: ../../../../pikotools/date/date.h
templates.o: ../../../winix/functions/sort.h templates.o: ../../../../winix/winixd/core/dirs.h
templates.o: ../../../winix/functions/specialdefault.h templates.o: ../../../../winix/winixd/core/dircontainer.h
templates.o: ../../../winix/functions/stat.h templates.o: ../../../../winix/winixd/db/db.h
templates.o: ../../../winix/functions/subject.h templates.o: ../../../../winix/winixd/db/dbbase.h
templates.o: ../../../winix/functions/template.h templates.o: ../../../../winix/winixd/db/dbconn.h
templates.o: ../../../winix/functions/tinymce.h templates.o: ../../../../winix/winixd/db/dbtextstream.h
templates.o: ../../../winix/functions/uname.h templates.o: ../../../../winix/winixd/core/textstream.h
templates.o: ../../../winix/functions/upload.h templates.o: ../../../../winix/winixd/core/misc.h
templates.o: ../../../winix/functions/uptime.h ../../../winix/functions/who.h templates.o: ../../../../winix/winixd/core/requesttypes.h
templates.o: ../../../winix/functions/vim.h ../../../winix/core/log.h templates.o: ../../../../pikotools/textstream/textstream.h
templates.o: ../../../winix/core/misc.h ../../../winix/templates/miscspace.h templates.o: ../../../../pikotools/convert/convert.h
templates.o: ../../../winix/templates/templates.h templates.o: ../../../../pikotools/convert/inttostr.h
templates.o: ../../../../pikotools/membuffer/membuffer.h
templates.o: ../../../../pikotools/textstream/types.h
templates.o: ../../../../pikotools/utf8/utf8.h
templates.o: ../../../../winix/winixd/core/winix_const.h
templates.o: ../../../../winix/winixd/core/error.h
templates.o: ../../../../pikotools/space/spaceparser.h
templates.o: ../../../../pikotools/space/space.h
templates.o: ../../../../winix/winixd/db/dbitemquery.h
templates.o: ../../../../winix/winixd/db/dbitemcolumns.h
templates.o: ../../../../winix/winixd/core/user.h
templates.o: ../../../../winix/winixd/core/group.h
templates.o: ../../../../winix/winixd/core/dircontainer.h
templates.o: ../../../../winix/winixd/core/ugcontainer.h
templates.o: ../../../../winix/winixd/core/log.h
templates.o: ../../../../winix/winixd/core/textstream.h
templates.o: ../../../../winix/winixd/core/logmanipulators.h
templates.o: ../../../../winix/winixd/core/slog.h
templates.o: ../../../../winix/winixd/core/cur.h
templates.o: ../../../../winix/winixd/core/request.h
templates.o: ../../../../winix/winixd/core/error.h
templates.o: ../../../../winix/winixd/core/config.h
templates.o: ../../../../winix/winixd/core/htmlfilter.h
templates.o: ../../../../winix/winixd/templates/htmltextstream.h
templates.o: ../../../../pikotools/space/spacetojson.h
templates.o: ../../../../ezc/src/outstreams.h
templates.o: ../../../../winix/winixd/core/session.h
templates.o: ../../../../winix/winixd/core/user.h
templates.o: ../../../../winix/winixd/core/plugindata.h
templates.o: ../../../../winix/winixd/core/rebus.h
templates.o: ../../../../winix/winixd/core/ipban.h
templates.o: ../../../../winix/winixd/core/mount.h
templates.o: ../../../../winix/winixd/templates/locale.h
templates.o: ../../../../winix/winixd/notify/notify.h
templates.o: ../../../../winix/winixd/notify/notifypool.h
templates.o: ../../../../winix/winixd/templates/patterns.h
templates.o: ../../../../winix/winixd/templates/locale.h
templates.o: ../../../../winix/winixd/templates/localefilter.h
templates.o: ../../../../winix/winixd/notify/notifythread.h
templates.o: ../../../../winix/winixd/core/basethread.h
templates.o: ../../../../winix/winixd/core/synchro.h
templates.o: ../../../../winix/winixd/notify/templatesnotify.h
templates.o: ../../../../winix/winixd/core/config.h
templates.o: ../../../../winix/winixd/core/users.h
templates.o: ../../../../winix/winixd/core/ugcontainer.h
templates.o: ../../../../winix/winixd/core/lastcontainer.h
templates.o: ../../../../ezc/src/pattern.h ../../../../ezc/src/functions.h
templates.o: ../../../../ezc/src/funinfo.h ../../../../ezc/src/objects.h
templates.o: ../../../../ezc/src/patternparser.h
templates.o: ../../../../winix/winixd/templates/patterncacher.h
templates.o: ../../../../winix/winixd/templates/indexpatterns.h
templates.o: ../../../../winix/winixd/templates/patterns.h
templates.o: ../../../../winix/winixd/templates/changepatterns.h
templates.o: ../../../../winix/winixd/templates/htmltextstream.h
templates.o: ../../../../winix/winixd/core/cur.h
templates.o: ../../../../winix/winixd/core/system.h
templates.o: ../../../../winix/winixd/core/sessionmanager.h
templates.o: ../../../../winix/winixd/core/htmlfilter.h
templates.o: ../../../../winix/winixd/core/plugin.h
templates.o: ../../../../winix/winixd/core/pluginmsg.h
templates.o: ../../../../winix/winixd/core/system.h
templates.o: ../../../../winix/winixd/core/job.h
templates.o: ../../../../winix/winixd/core/basethread.h
templates.o: ../../../../winix/winixd/core/dirs.h
templates.o: ../../../../winix/winixd/core/mounts.h
templates.o: ../../../../winix/winixd/core/mountparser.h
templates.o: ../../../../winix/winixd/core/crypt.h
templates.o: ../../../../winix/winixd/core/run.h
templates.o: ../../../../winix/winixd/core/users.h
templates.o: ../../../../winix/winixd/core/groups.h
templates.o: ../../../../winix/winixd/core/group.h
templates.o: ../../../../winix/winixd/core/loadavg.h
templates.o: ../../../../winix/winixd/core/image.h
templates.o: ../../../../winix/winixd/core/threadmanager.h
templates.o: ../../../../winix/winixd/core/timezones.h
templates.o: ../../../../winix/winixd/core/timezone.h
templates.o: ../../../../winix/winixd/core/sessionmanager.h
templates.o: ../../../../winix/winixd/core/sessioncontainer.h
templates.o: ../../../../winix/winixd/core/ipbancontainer.h
templates.o: ../../../../winix/winixd/core/sessionidmanager.h
templates.o: ../../../../tito/src/base64.h ../../../../tito/src/aes.h
templates.o: ../../../../winix/winixd/functions/functions.h
templates.o: ../../../../winix/winixd/functions/functionbase.h
templates.o: ../../../../winix/winixd/core/request.h
templates.o: ../../../../winix/winixd/core/synchro.h
templates.o: ../../../../winix/winixd/functions/functionparser.h
templates.o: ../../../../winix/winixd/functions/account.h
templates.o: ../../../../winix/winixd/functions/adduser.h
templates.o: ../../../../winix/winixd/functions/cat.h
templates.o: ../../../../winix/winixd/functions/chmod.h
templates.o: ../../../../winix/winixd/functions/privchanger.h
templates.o: ../../../../winix/winixd/functions/chown.h
templates.o: ../../../../winix/winixd/functions/ckeditor.h
templates.o: ../../../../winix/winixd/functions/cp.h
templates.o: ../../../../winix/winixd/functions/default.h
templates.o: ../../../../winix/winixd/functions/download.h
templates.o: ../../../../winix/winixd/functions/emacs.h
templates.o: ../../../../winix/winixd/functions/env.h
templates.o: ../../../../winix/winixd/functions/imgcrop.h
templates.o: ../../../../winix/winixd/functions/last.h
templates.o: ../../../../winix/winixd/functions/login.h
templates.o: ../../../../winix/winixd/functions/logout.h
templates.o: ../../../../winix/winixd/functions/ln.h
templates.o: ../../../../winix/winixd/functions/ls.h
templates.o: ../../../../winix/winixd/functions/man.h
templates.o: ../../../../winix/winixd/functions/meta.h
templates.o: ../../../../winix/winixd/functions/mkdir.h
templates.o: ../../../../winix/winixd/functions/mv.h
templates.o: ../../../../winix/winixd/functions/nicedit.h
templates.o: ../../../../winix/winixd/functions/node.h
templates.o: ../../../../winix/winixd/functions/passwd.h
templates.o: ../../../../winix/winixd/functions/priv.h
templates.o: ../../../../winix/winixd/functions/pw.h
templates.o: ../../../../winix/winixd/functions/reload.h
templates.o: ../../../../winix/winixd/functions/rm.h
templates.o: ../../../../winix/winixd/functions/rmuser.h
templates.o: ../../../../winix/winixd/functions/sort.h
templates.o: ../../../../winix/winixd/functions/specialdefault.h
templates.o: ../../../../winix/winixd/functions/stat.h
templates.o: ../../../../winix/winixd/functions/subject.h
templates.o: ../../../../winix/winixd/functions/template.h
templates.o: ../../../../winix/winixd/functions/tinymce.h
templates.o: ../../../../winix/winixd/functions/uname.h
templates.o: ../../../../winix/winixd/functions/upload.h
templates.o: ../../../../winix/winixd/functions/uptime.h
templates.o: ../../../../winix/winixd/functions/who.h
templates.o: ../../../../winix/winixd/functions/vim.h
templates.o: ../../../../winix/winixd/core/log.h
templates.o: ../../../../winix/winixd/core/misc.h
templates.o: ../../../../winix/winixd/templates/miscspace.h
templates.o: ../../../../winix/winixd/templates/templates.h

View File

@ -1,22 +1,27 @@
include Makefile.o.dep include Makefile.o.dep
current_path := $(shell pwd)
global_relative_working_dir := $(shell relative_path $(current_path) $(GLOBAL_WORKING_DIR))
winix_include_paths = -I$(global_relative_working_dir)/winix/winixd -I$(global_relative_working_dir)/ezc/src -I$(global_relative_working_dir)/tito/src -I$(global_relative_working_dir)/pikotools
name = stats.so name = stats.so
all: $(name) all: $(name)
$(name): $(o) $(name): $(o)
$(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $(LDFLAGS) *.o $(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(winix_include_paths) $(LDFLAGS) *.o
%.o: %.cpp %.o: %.cpp
$(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< $(CXX) -c $(CXXFLAGS) $(winix_include_paths) $<
depend: depend:
makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep makedepend -Y. $(winix_include_paths) -f- *.cpp > Makefile.dep
echo -n "o = " > Makefile.o.dep echo -n "o = " > Makefile.o.dep
ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep

View File

@ -1,217 +1,330 @@
# DO NOT DELETE # DO NOT DELETE
bot.o: bot.h bot.o: bot.h
init.o: ../../../winix/core/log.h ../../../winix/core/textstream.h init.o: ../../../../winix/winixd/core/log.h
init.o: ../../../winix/core/misc.h ../../../winix/core/item.h init.o: ../../../../winix/winixd/core/textstream.h
init.o: ../../../pikotools/space/space.h init.o: ../../../../winix/winixd/core/misc.h
init.o: ../../../pikotools/textstream/types.h ../../../pikotools/date/date.h init.o: ../../../../winix/winixd/core/item.h
init.o: ../../../winix/core/requesttypes.h init.o: ../../../../pikotools/space/space.h
init.o: ../../../pikotools/textstream/textstream.h init.o: ../../../../pikotools/textstream/types.h
init.o: ../../../pikotools/convert/convert.h init.o: ../../../../pikotools/date/date.h
init.o: ../../../pikotools/convert/inttostr.h init.o: ../../../../winix/winixd/core/requesttypes.h
init.o: ../../../pikotools/membuffer/membuffer.h init.o: ../../../../pikotools/textstream/textstream.h
init.o: ../../../pikotools/textstream/types.h ../../../pikotools/utf8/utf8.h init.o: ../../../../pikotools/convert/convert.h
init.o: ../../../winix/core/winix_const.h init.o: ../../../../pikotools/convert/inttostr.h
init.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h init.o: ../../../../pikotools/membuffer/membuffer.h
init.o: ../../../winix/core/cur.h ../../../winix/core/request.h init.o: ../../../../pikotools/textstream/types.h
init.o: ../../../winix/core/error.h ../../../winix/core/config.h init.o: ../../../../pikotools/utf8/utf8.h
init.o: ../../../pikotools/space/spaceparser.h init.o: ../../../../winix/winixd/core/winix_const.h
init.o: ../../../pikotools/space/space.h ../../../winix/core/htmlfilter.h init.o: ../../../../winix/winixd/core/logmanipulators.h
init.o: ../../../winix/templates/htmltextstream.h init.o: ../../../../winix/winixd/core/slog.h
init.o: ../../../winix/core/textstream.h init.o: ../../../../winix/winixd/core/cur.h
init.o: ../../../pikotools/space/spacetojson.h ../../../ezc/src/outstreams.h init.o: ../../../../winix/winixd/core/request.h
init.o: ../../../winix/core/session.h ../../../winix/core/user.h init.o: ../../../../winix/winixd/core/error.h
init.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h init.o: ../../../../winix/winixd/core/config.h
init.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h init.o: ../../../../pikotools/space/spaceparser.h
init.o: ../../../winix/templates/locale.h ../../../winix/core/request.h init.o: ../../../../pikotools/space/space.h
init.o: ../../../winix/core/config.h ../../../winix/db/db.h init.o: ../../../../winix/winixd/core/htmlfilter.h
init.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h init.o: ../../../../winix/winixd/templates/htmltextstream.h
init.o: ../../../winix/db/dbtextstream.h ../../../winix/core/error.h init.o: ../../../../winix/winixd/core/textstream.h
init.o: ../../../winix/db/dbitemquery.h ../../../winix/core/item.h init.o: ../../../../pikotools/space/spacetojson.h
init.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h init.o: ../../../../ezc/src/outstreams.h
init.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h init.o: ../../../../winix/winixd/core/session.h
init.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h bot.h init.o: ../../../../winix/winixd/core/user.h
init.o: stats.h templates.h ../../../winix/core/plugin.h init.o: ../../../../winix/winixd/core/plugindata.h
init.o: ../../../winix/core/pluginmsg.h ../../../winix/core/system.h init.o: ../../../../winix/winixd/core/rebus.h
init.o: ../../../winix/core/job.h ../../../winix/core/basethread.h init.o: ../../../../winix/winixd/core/ipban.h
init.o: ../../../winix/core/synchro.h ../../../winix/core/dirs.h init.o: ../../../../winix/winixd/core/mount.h
init.o: ../../../winix/core/dircontainer.h ../../../winix/notify/notify.h init.o: ../../../../winix/winixd/templates/locale.h
init.o: ../../../winix/notify/notifypool.h init.o: ../../../../winix/winixd/core/request.h
init.o: ../../../winix/templates/patterns.h ../../../winix/templates/locale.h init.o: ../../../../winix/winixd/core/config.h
init.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h init.o: ../../../../winix/winixd/db/db.h ../../../../winix/winixd/db/dbbase.h
init.o: ../../../ezc/src/generator.h ../../../ezc/src/blocks.h init.o: ../../../../winix/winixd/db/dbconn.h
init.o: ../../../ezc/src/cache.h ../../../ezc/src/functions.h init.o: ../../../../winix/winixd/db/dbtextstream.h
init.o: ../../../ezc/src/funinfo.h ../../../ezc/src/objects.h init.o: ../../../../winix/winixd/core/error.h
init.o: ../../../ezc/src/pattern.h ../../../ezc/src/patternparser.h init.o: ../../../../winix/winixd/db/dbitemquery.h
init.o: ../../../winix/notify/notifythread.h ../../../winix/core/basethread.h init.o: ../../../../winix/winixd/core/item.h
init.o: ../../../winix/notify/templatesnotify.h ../../../winix/core/users.h init.o: ../../../../winix/winixd/db/dbitemcolumns.h
init.o: ../../../winix/core/ugcontainer.h ../../../winix/core/lastcontainer.h init.o: ../../../../winix/winixd/core/user.h
init.o: ../../../winix/core/mounts.h ../../../winix/core/mountparser.h init.o: ../../../../winix/winixd/core/group.h
init.o: ../../../winix/core/crypt.h ../../../winix/core/run.h init.o: ../../../../winix/winixd/core/dircontainer.h
init.o: ../../../winix/core/users.h ../../../winix/core/groups.h init.o: ../../../../winix/winixd/core/ugcontainer.h
init.o: ../../../winix/core/group.h ../../../winix/core/loadavg.h init.o: ../../../../winix/winixd/core/log.h bot.h stats.h templates.h
init.o: ../../../winix/core/image.h ../../../winix/core/threadmanager.h init.o: ../../../../winix/winixd/core/plugin.h
init.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h init.o: ../../../../winix/winixd/core/pluginmsg.h
init.o: ../../../winix/core/sessionmanager.h init.o: ../../../../winix/winixd/core/system.h
init.o: ../../../winix/core/sessioncontainer.h init.o: ../../../../winix/winixd/core/job.h
init.o: ../../../winix/core/ipbancontainer.h init.o: ../../../../winix/winixd/core/basethread.h
init.o: ../../../winix/core/sessionidmanager.h ../../../tito/src/base64.h init.o: ../../../../winix/winixd/core/synchro.h
init.o: ../../../tito/src/aes.h ../../../winix/functions/functions.h init.o: ../../../../winix/winixd/core/dirs.h
init.o: ../../../winix/functions/functionbase.h ../../../winix/core/system.h init.o: ../../../../winix/winixd/core/dircontainer.h
init.o: ../../../winix/core/synchro.h init.o: ../../../../winix/winixd/notify/notify.h
init.o: ../../../winix/functions/functionparser.h ../../../winix/core/cur.h init.o: ../../../../winix/winixd/notify/notifypool.h
init.o: ../../../winix/functions/account.h ../../../winix/functions/adduser.h init.o: ../../../../winix/winixd/templates/patterns.h
init.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h init.o: ../../../../winix/winixd/templates/locale.h
init.o: ../../../winix/functions/privchanger.h init.o: ../../../../winix/winixd/templates/localefilter.h
init.o: ../../../winix/functions/chown.h ../../../winix/functions/ckeditor.h init.o: ../../../../ezc/src/ezc.h ../../../../ezc/src/generator.h
init.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h init.o: ../../../../ezc/src/blocks.h ../../../../ezc/src/cache.h
init.o: ../../../winix/functions/download.h ../../../winix/functions/emacs.h init.o: ../../../../ezc/src/functions.h ../../../../ezc/src/funinfo.h
init.o: ../../../winix/functions/env.h ../../../winix/functions/imgcrop.h init.o: ../../../../ezc/src/objects.h ../../../../ezc/src/pattern.h
init.o: ../../../winix/functions/last.h ../../../winix/functions/login.h init.o: ../../../../ezc/src/patternparser.h
init.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h init.o: ../../../../winix/winixd/notify/notifythread.h
init.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h init.o: ../../../../winix/winixd/core/basethread.h
init.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h init.o: ../../../../winix/winixd/notify/templatesnotify.h
init.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h init.o: ../../../../winix/winixd/core/users.h
init.o: ../../../winix/functions/node.h ../../../winix/functions/passwd.h init.o: ../../../../winix/winixd/core/ugcontainer.h
init.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h init.o: ../../../../winix/winixd/core/lastcontainer.h
init.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h init.o: ../../../../winix/winixd/core/mounts.h
init.o: ../../../winix/functions/rmuser.h ../../../winix/functions/sort.h init.o: ../../../../winix/winixd/core/mountparser.h
init.o: ../../../winix/functions/specialdefault.h init.o: ../../../../winix/winixd/core/crypt.h
init.o: ../../../winix/functions/stat.h ../../../winix/functions/subject.h init.o: ../../../../winix/winixd/core/run.h
init.o: ../../../winix/functions/template.h init.o: ../../../../winix/winixd/core/users.h
init.o: ../../../winix/functions/tinymce.h ../../../winix/functions/uname.h init.o: ../../../../winix/winixd/core/groups.h
init.o: ../../../winix/functions/upload.h ../../../winix/functions/uptime.h init.o: ../../../../winix/winixd/core/group.h
init.o: ../../../winix/functions/who.h ../../../winix/functions/vim.h init.o: ../../../../winix/winixd/core/loadavg.h
init.o: ../../../winix/core/htmlfilter.h ../../../winix/templates/templates.h init.o: ../../../../winix/winixd/core/image.h
init.o: ../../../winix/templates/patterncacher.h init.o: ../../../../winix/winixd/core/threadmanager.h
init.o: ../../../winix/templates/indexpatterns.h init.o: ../../../../winix/winixd/core/timezones.h
init.o: ../../../winix/templates/patterns.h init.o: ../../../../winix/winixd/core/timezone.h
init.o: ../../../winix/templates/changepatterns.h init.o: ../../../../winix/winixd/core/sessionmanager.h
init.o: ../../../winix/templates/htmltextstream.h init.o: ../../../../winix/winixd/core/sessioncontainer.h
init.o: ../../../winix/core/sessionmanager.h statssession.h init.o: ../../../../winix/winixd/core/ipbancontainer.h
init.o: ../../../winix/core/plugindata.h init.o: ../../../../winix/winixd/core/sessionidmanager.h
stats.o: stats.h ../../../winix/core/config.h ../../../winix/core/log.h init.o: ../../../../tito/src/base64.h ../../../../tito/src/aes.h
stats.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h init.o: ../../../../winix/winixd/functions/functions.h
stats.o: ../../../winix/core/item.h ../../../pikotools/space/space.h init.o: ../../../../winix/winixd/functions/functionbase.h
stats.o: ../../../pikotools/textstream/types.h ../../../pikotools/date/date.h init.o: ../../../../winix/winixd/core/system.h
stats.o: ../../../winix/core/requesttypes.h init.o: ../../../../winix/winixd/core/synchro.h
stats.o: ../../../pikotools/textstream/textstream.h init.o: ../../../../winix/winixd/functions/functionparser.h
stats.o: ../../../pikotools/convert/convert.h init.o: ../../../../winix/winixd/core/cur.h
stats.o: ../../../pikotools/convert/inttostr.h init.o: ../../../../winix/winixd/functions/account.h
stats.o: ../../../pikotools/membuffer/membuffer.h init.o: ../../../../winix/winixd/functions/adduser.h
stats.o: ../../../pikotools/textstream/types.h ../../../pikotools/utf8/utf8.h init.o: ../../../../winix/winixd/functions/cat.h
stats.o: ../../../winix/core/winix_const.h init.o: ../../../../winix/winixd/functions/chmod.h
stats.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h init.o: ../../../../winix/winixd/functions/privchanger.h
stats.o: ../../../winix/core/cur.h ../../../winix/core/request.h init.o: ../../../../winix/winixd/functions/chown.h
stats.o: ../../../winix/core/error.h ../../../winix/core/config.h init.o: ../../../../winix/winixd/functions/ckeditor.h
stats.o: ../../../pikotools/space/spaceparser.h init.o: ../../../../winix/winixd/functions/cp.h
stats.o: ../../../pikotools/space/space.h ../../../winix/core/htmlfilter.h init.o: ../../../../winix/winixd/functions/default.h
stats.o: ../../../winix/templates/htmltextstream.h init.o: ../../../../winix/winixd/functions/download.h
stats.o: ../../../winix/core/textstream.h init.o: ../../../../winix/winixd/functions/emacs.h
stats.o: ../../../pikotools/space/spacetojson.h ../../../ezc/src/outstreams.h init.o: ../../../../winix/winixd/functions/env.h
stats.o: ../../../winix/core/session.h ../../../winix/core/user.h init.o: ../../../../winix/winixd/functions/imgcrop.h
stats.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h init.o: ../../../../winix/winixd/functions/last.h
stats.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h init.o: ../../../../winix/winixd/functions/login.h
stats.o: ../../../winix/templates/locale.h init.o: ../../../../winix/winixd/functions/logout.h
templates.o: templates.h ../../../winix/core/plugin.h init.o: ../../../../winix/winixd/functions/ln.h
templates.o: ../../../winix/core/pluginmsg.h ../../../winix/core/log.h init.o: ../../../../winix/winixd/functions/ls.h
templates.o: ../../../winix/core/plugindata.h ../../../winix/core/config.h init.o: ../../../../winix/winixd/functions/man.h
templates.o: ../../../pikotools/space/spaceparser.h init.o: ../../../../winix/winixd/functions/meta.h
templates.o: ../../../pikotools/space/space.h init.o: ../../../../winix/winixd/functions/mkdir.h
templates.o: ../../../winix/core/htmlfilter.h ../../../winix/core/request.h init.o: ../../../../winix/winixd/functions/mv.h
templates.o: ../../../winix/core/requesttypes.h init.o: ../../../../winix/winixd/functions/nicedit.h
templates.o: ../../../pikotools/textstream/textstream.h init.o: ../../../../winix/winixd/functions/node.h
templates.o: ../../../pikotools/space/space.h init.o: ../../../../winix/winixd/functions/passwd.h
templates.o: ../../../pikotools/textstream/types.h init.o: ../../../../winix/winixd/functions/priv.h
templates.o: ../../../pikotools/date/date.h init.o: ../../../../winix/winixd/functions/pw.h
templates.o: ../../../pikotools/convert/convert.h init.o: ../../../../winix/winixd/functions/reload.h
templates.o: ../../../pikotools/convert/inttostr.h init.o: ../../../../winix/winixd/functions/rm.h
templates.o: ../../../pikotools/membuffer/membuffer.h init.o: ../../../../winix/winixd/functions/rmuser.h
templates.o: ../../../pikotools/textstream/types.h ../../../winix/core/item.h init.o: ../../../../winix/winixd/functions/sort.h
templates.o: ../../../winix/core/error.h ../../../winix/core/textstream.h init.o: ../../../../winix/winixd/functions/specialdefault.h
templates.o: ../../../winix/core/misc.h ../../../pikotools/utf8/utf8.h init.o: ../../../../winix/winixd/functions/stat.h
templates.o: ../../../winix/core/winix_const.h init.o: ../../../../winix/winixd/functions/subject.h
templates.o: ../../../winix/templates/htmltextstream.h init.o: ../../../../winix/winixd/functions/template.h
templates.o: ../../../winix/core/textstream.h init.o: ../../../../winix/winixd/functions/tinymce.h
templates.o: ../../../pikotools/space/spacetojson.h init.o: ../../../../winix/winixd/functions/uname.h
templates.o: ../../../ezc/src/outstreams.h ../../../winix/core/system.h init.o: ../../../../winix/winixd/functions/upload.h
templates.o: ../../../winix/core/job.h ../../../winix/core/basethread.h init.o: ../../../../winix/winixd/functions/uptime.h
templates.o: ../../../winix/core/synchro.h ../../../winix/core/dirs.h init.o: ../../../../winix/winixd/functions/who.h
templates.o: ../../../winix/core/dircontainer.h ../../../winix/db/db.h init.o: ../../../../winix/winixd/functions/vim.h
templates.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h init.o: ../../../../winix/winixd/core/htmlfilter.h
templates.o: ../../../winix/db/dbtextstream.h ../../../winix/core/error.h init.o: ../../../../winix/winixd/templates/templates.h
templates.o: ../../../winix/db/dbitemquery.h ../../../winix/core/item.h init.o: ../../../../winix/winixd/templates/patterncacher.h
templates.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h init.o: ../../../../winix/winixd/templates/indexpatterns.h
templates.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h init.o: ../../../../winix/winixd/templates/patterns.h
templates.o: ../../../winix/core/ugcontainer.h ../../../winix/notify/notify.h init.o: ../../../../winix/winixd/templates/changepatterns.h
templates.o: ../../../winix/notify/notifypool.h init.o: ../../../../winix/winixd/templates/htmltextstream.h
templates.o: ../../../winix/templates/locale.h init.o: ../../../../winix/winixd/core/sessionmanager.h statssession.h
templates.o: ../../../winix/templates/patterns.h init.o: ../../../../winix/winixd/core/plugindata.h
templates.o: ../../../winix/templates/locale.h stats.o: stats.h ../../../../winix/winixd/core/config.h
templates.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h stats.o: ../../../../winix/winixd/core/log.h
templates.o: ../../../ezc/src/generator.h ../../../ezc/src/blocks.h stats.o: ../../../../winix/winixd/core/textstream.h
templates.o: ../../../ezc/src/cache.h ../../../ezc/src/functions.h stats.o: ../../../../winix/winixd/core/misc.h
templates.o: ../../../ezc/src/funinfo.h ../../../ezc/src/objects.h stats.o: ../../../../winix/winixd/core/item.h
templates.o: ../../../ezc/src/pattern.h ../../../ezc/src/patternparser.h stats.o: ../../../../pikotools/space/space.h
templates.o: ../../../winix/notify/notifythread.h stats.o: ../../../../pikotools/textstream/types.h
templates.o: ../../../winix/core/basethread.h stats.o: ../../../../pikotools/date/date.h
templates.o: ../../../winix/notify/templatesnotify.h stats.o: ../../../../winix/winixd/core/requesttypes.h
templates.o: ../../../winix/core/config.h ../../../winix/core/users.h stats.o: ../../../../pikotools/textstream/textstream.h
templates.o: ../../../winix/core/user.h ../../../winix/core/ugcontainer.h stats.o: ../../../../pikotools/convert/convert.h
templates.o: ../../../winix/core/lastcontainer.h ../../../winix/core/cur.h stats.o: ../../../../pikotools/convert/inttostr.h
templates.o: ../../../winix/core/session.h ../../../winix/core/rebus.h stats.o: ../../../../pikotools/membuffer/membuffer.h
templates.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h stats.o: ../../../../pikotools/textstream/types.h
templates.o: ../../../winix/core/mounts.h ../../../winix/core/mountparser.h stats.o: ../../../../pikotools/utf8/utf8.h
templates.o: ../../../winix/core/crypt.h ../../../winix/core/run.h stats.o: ../../../../winix/winixd/core/winix_const.h
templates.o: ../../../winix/core/users.h ../../../winix/core/groups.h stats.o: ../../../../winix/winixd/core/logmanipulators.h
templates.o: ../../../winix/core/group.h ../../../winix/core/loadavg.h stats.o: ../../../../winix/winixd/core/slog.h
templates.o: ../../../winix/core/image.h ../../../winix/core/threadmanager.h stats.o: ../../../../winix/winixd/core/cur.h
templates.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h stats.o: ../../../../winix/winixd/core/request.h
templates.o: ../../../winix/core/sessionmanager.h stats.o: ../../../../winix/winixd/core/error.h
templates.o: ../../../winix/core/sessioncontainer.h stats.o: ../../../../winix/winixd/core/config.h
templates.o: ../../../winix/core/ipbancontainer.h stats.o: ../../../../pikotools/space/spaceparser.h
templates.o: ../../../winix/core/sessionidmanager.h stats.o: ../../../../pikotools/space/space.h
templates.o: ../../../tito/src/base64.h ../../../tito/src/aes.h stats.o: ../../../../winix/winixd/core/htmlfilter.h
templates.o: ../../../winix/functions/functions.h stats.o: ../../../../winix/winixd/templates/htmltextstream.h
templates.o: ../../../winix/functions/functionbase.h stats.o: ../../../../winix/winixd/core/textstream.h
templates.o: ../../../winix/core/request.h ../../../winix/core/system.h stats.o: ../../../../pikotools/space/spacetojson.h
templates.o: ../../../winix/core/synchro.h stats.o: ../../../../ezc/src/outstreams.h
templates.o: ../../../winix/functions/functionparser.h stats.o: ../../../../winix/winixd/core/session.h
templates.o: ../../../winix/core/cur.h ../../../winix/functions/account.h stats.o: ../../../../winix/winixd/core/user.h
templates.o: ../../../winix/functions/adduser.h stats.o: ../../../../winix/winixd/core/plugindata.h
templates.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h stats.o: ../../../../winix/winixd/core/rebus.h
templates.o: ../../../winix/functions/privchanger.h stats.o: ../../../../winix/winixd/core/ipban.h
templates.o: ../../../winix/functions/chown.h stats.o: ../../../../winix/winixd/core/mount.h
templates.o: ../../../winix/functions/ckeditor.h stats.o: ../../../../winix/winixd/templates/locale.h
templates.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h templates.o: templates.h ../../../../winix/winixd/core/plugin.h
templates.o: ../../../winix/functions/download.h templates.o: ../../../../winix/winixd/core/pluginmsg.h
templates.o: ../../../winix/functions/emacs.h ../../../winix/functions/env.h templates.o: ../../../../winix/winixd/core/log.h
templates.o: ../../../winix/functions/imgcrop.h templates.o: ../../../../winix/winixd/core/plugindata.h
templates.o: ../../../winix/functions/last.h ../../../winix/functions/login.h templates.o: ../../../../winix/winixd/core/config.h
templates.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h templates.o: ../../../../pikotools/space/spaceparser.h
templates.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h templates.o: ../../../../pikotools/space/space.h
templates.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h templates.o: ../../../../winix/winixd/core/htmlfilter.h
templates.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h templates.o: ../../../../winix/winixd/core/request.h
templates.o: ../../../winix/functions/node.h templates.o: ../../../../winix/winixd/core/requesttypes.h
templates.o: ../../../winix/functions/passwd.h templates.o: ../../../../pikotools/textstream/textstream.h
templates.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h templates.o: ../../../../pikotools/space/space.h
templates.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h templates.o: ../../../../pikotools/textstream/types.h
templates.o: ../../../winix/functions/rmuser.h templates.o: ../../../../pikotools/date/date.h
templates.o: ../../../winix/functions/sort.h templates.o: ../../../../pikotools/convert/convert.h
templates.o: ../../../winix/functions/specialdefault.h templates.o: ../../../../pikotools/convert/inttostr.h
templates.o: ../../../winix/functions/stat.h templates.o: ../../../../pikotools/membuffer/membuffer.h
templates.o: ../../../winix/functions/subject.h templates.o: ../../../../pikotools/textstream/types.h
templates.o: ../../../winix/functions/template.h templates.o: ../../../../winix/winixd/core/item.h
templates.o: ../../../winix/functions/tinymce.h templates.o: ../../../../winix/winixd/core/error.h
templates.o: ../../../winix/functions/uname.h templates.o: ../../../../winix/winixd/core/textstream.h
templates.o: ../../../winix/functions/upload.h templates.o: ../../../../winix/winixd/core/misc.h
templates.o: ../../../winix/functions/uptime.h ../../../winix/functions/who.h templates.o: ../../../../pikotools/utf8/utf8.h
templates.o: ../../../winix/functions/vim.h ../../../winix/core/htmlfilter.h templates.o: ../../../../winix/winixd/core/winix_const.h
templates.o: ../../../winix/templates/templates.h templates.o: ../../../../winix/winixd/templates/htmltextstream.h
templates.o: ../../../winix/templates/patterncacher.h templates.o: ../../../../winix/winixd/core/textstream.h
templates.o: ../../../winix/templates/indexpatterns.h templates.o: ../../../../pikotools/space/spacetojson.h
templates.o: ../../../winix/templates/patterns.h templates.o: ../../../../ezc/src/outstreams.h
templates.o: ../../../winix/templates/changepatterns.h templates.o: ../../../../winix/winixd/core/system.h
templates.o: ../../../winix/templates/htmltextstream.h templates.o: ../../../../winix/winixd/core/job.h
templates.o: ../../../winix/core/sessionmanager.h ../../../winix/core/misc.h templates.o: ../../../../winix/winixd/core/basethread.h
templates.o: stats.h ../../../winix/templates/misc.h templates.o: ../../../../winix/winixd/core/synchro.h
templates.o: ../../../../winix/winixd/core/dirs.h
templates.o: ../../../../winix/winixd/core/dircontainer.h
templates.o: ../../../../winix/winixd/db/db.h
templates.o: ../../../../winix/winixd/db/dbbase.h
templates.o: ../../../../winix/winixd/db/dbconn.h
templates.o: ../../../../winix/winixd/db/dbtextstream.h
templates.o: ../../../../winix/winixd/core/error.h
templates.o: ../../../../winix/winixd/db/dbitemquery.h
templates.o: ../../../../winix/winixd/core/item.h
templates.o: ../../../../winix/winixd/db/dbitemcolumns.h
templates.o: ../../../../winix/winixd/core/user.h
templates.o: ../../../../winix/winixd/core/group.h
templates.o: ../../../../winix/winixd/core/dircontainer.h
templates.o: ../../../../winix/winixd/core/ugcontainer.h
templates.o: ../../../../winix/winixd/notify/notify.h
templates.o: ../../../../winix/winixd/notify/notifypool.h
templates.o: ../../../../winix/winixd/templates/locale.h
templates.o: ../../../../winix/winixd/templates/patterns.h
templates.o: ../../../../winix/winixd/templates/locale.h
templates.o: ../../../../winix/winixd/templates/localefilter.h
templates.o: ../../../../ezc/src/ezc.h ../../../../ezc/src/generator.h
templates.o: ../../../../ezc/src/blocks.h ../../../../ezc/src/cache.h
templates.o: ../../../../ezc/src/functions.h ../../../../ezc/src/funinfo.h
templates.o: ../../../../ezc/src/objects.h ../../../../ezc/src/pattern.h
templates.o: ../../../../ezc/src/patternparser.h
templates.o: ../../../../winix/winixd/notify/notifythread.h
templates.o: ../../../../winix/winixd/core/basethread.h
templates.o: ../../../../winix/winixd/notify/templatesnotify.h
templates.o: ../../../../winix/winixd/core/config.h
templates.o: ../../../../winix/winixd/core/users.h
templates.o: ../../../../winix/winixd/core/user.h
templates.o: ../../../../winix/winixd/core/ugcontainer.h
templates.o: ../../../../winix/winixd/core/lastcontainer.h
templates.o: ../../../../winix/winixd/core/cur.h
templates.o: ../../../../winix/winixd/core/session.h
templates.o: ../../../../winix/winixd/core/rebus.h
templates.o: ../../../../winix/winixd/core/ipban.h
templates.o: ../../../../winix/winixd/core/mount.h
templates.o: ../../../../winix/winixd/core/mounts.h
templates.o: ../../../../winix/winixd/core/mountparser.h
templates.o: ../../../../winix/winixd/core/crypt.h
templates.o: ../../../../winix/winixd/core/run.h
templates.o: ../../../../winix/winixd/core/users.h
templates.o: ../../../../winix/winixd/core/groups.h
templates.o: ../../../../winix/winixd/core/group.h
templates.o: ../../../../winix/winixd/core/loadavg.h
templates.o: ../../../../winix/winixd/core/image.h
templates.o: ../../../../winix/winixd/core/threadmanager.h
templates.o: ../../../../winix/winixd/core/timezones.h
templates.o: ../../../../winix/winixd/core/timezone.h
templates.o: ../../../../winix/winixd/core/sessionmanager.h
templates.o: ../../../../winix/winixd/core/sessioncontainer.h
templates.o: ../../../../winix/winixd/core/ipbancontainer.h
templates.o: ../../../../winix/winixd/core/sessionidmanager.h
templates.o: ../../../../tito/src/base64.h ../../../../tito/src/aes.h
templates.o: ../../../../winix/winixd/functions/functions.h
templates.o: ../../../../winix/winixd/functions/functionbase.h
templates.o: ../../../../winix/winixd/core/request.h
templates.o: ../../../../winix/winixd/core/system.h
templates.o: ../../../../winix/winixd/core/synchro.h
templates.o: ../../../../winix/winixd/functions/functionparser.h
templates.o: ../../../../winix/winixd/core/cur.h
templates.o: ../../../../winix/winixd/functions/account.h
templates.o: ../../../../winix/winixd/functions/adduser.h
templates.o: ../../../../winix/winixd/functions/cat.h
templates.o: ../../../../winix/winixd/functions/chmod.h
templates.o: ../../../../winix/winixd/functions/privchanger.h
templates.o: ../../../../winix/winixd/functions/chown.h
templates.o: ../../../../winix/winixd/functions/ckeditor.h
templates.o: ../../../../winix/winixd/functions/cp.h
templates.o: ../../../../winix/winixd/functions/default.h
templates.o: ../../../../winix/winixd/functions/download.h
templates.o: ../../../../winix/winixd/functions/emacs.h
templates.o: ../../../../winix/winixd/functions/env.h
templates.o: ../../../../winix/winixd/functions/imgcrop.h
templates.o: ../../../../winix/winixd/functions/last.h
templates.o: ../../../../winix/winixd/functions/login.h
templates.o: ../../../../winix/winixd/functions/logout.h
templates.o: ../../../../winix/winixd/functions/ln.h
templates.o: ../../../../winix/winixd/functions/ls.h
templates.o: ../../../../winix/winixd/functions/man.h
templates.o: ../../../../winix/winixd/functions/meta.h
templates.o: ../../../../winix/winixd/functions/mkdir.h
templates.o: ../../../../winix/winixd/functions/mv.h
templates.o: ../../../../winix/winixd/functions/nicedit.h
templates.o: ../../../../winix/winixd/functions/node.h
templates.o: ../../../../winix/winixd/functions/passwd.h
templates.o: ../../../../winix/winixd/functions/priv.h
templates.o: ../../../../winix/winixd/functions/pw.h
templates.o: ../../../../winix/winixd/functions/reload.h
templates.o: ../../../../winix/winixd/functions/rm.h
templates.o: ../../../../winix/winixd/functions/rmuser.h
templates.o: ../../../../winix/winixd/functions/sort.h
templates.o: ../../../../winix/winixd/functions/specialdefault.h
templates.o: ../../../../winix/winixd/functions/stat.h
templates.o: ../../../../winix/winixd/functions/subject.h
templates.o: ../../../../winix/winixd/functions/template.h
templates.o: ../../../../winix/winixd/functions/tinymce.h
templates.o: ../../../../winix/winixd/functions/uname.h
templates.o: ../../../../winix/winixd/functions/upload.h
templates.o: ../../../../winix/winixd/functions/uptime.h
templates.o: ../../../../winix/winixd/functions/who.h
templates.o: ../../../../winix/winixd/functions/vim.h
templates.o: ../../../../winix/winixd/core/htmlfilter.h
templates.o: ../../../../winix/winixd/templates/templates.h
templates.o: ../../../../winix/winixd/templates/patterncacher.h
templates.o: ../../../../winix/winixd/templates/indexpatterns.h
templates.o: ../../../../winix/winixd/templates/patterns.h
templates.o: ../../../../winix/winixd/templates/changepatterns.h
templates.o: ../../../../winix/winixd/templates/htmltextstream.h
templates.o: ../../../../winix/winixd/core/sessionmanager.h
templates.o: ../../../../winix/winixd/core/misc.h stats.h
templates.o: ../../../../winix/winixd/templates/misc.h

View File

@ -1,22 +1,27 @@
include Makefile.o.dep include Makefile.o.dep
current_path := $(shell pwd)
global_relative_working_dir := $(shell relative_path $(current_path) $(GLOBAL_WORKING_DIR))
winix_include_paths = -I$(global_relative_working_dir)/winix/winixd -I$(global_relative_working_dir)/ezc/src -I$(global_relative_working_dir)/tito/src -I$(global_relative_working_dir)/pikotools
name = thread.so name = thread.so
all: $(name) all: $(name)
$(name): $(o) $(name): $(o)
$(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $(LDFLAGS) *.o $(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(winix_include_paths) $(LDFLAGS) *.o
%.o: %.cpp %.o: %.cpp
$(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< $(CXX) -c $(CXXFLAGS) $(winix_include_paths) $<
depend: depend:
makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep makedepend -Y. $(winix_include_paths) -f- *.cpp > Makefile.dep
echo -n "o = " > Makefile.o.dep echo -n "o = " > Makefile.o.dep
ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep

File diff suppressed because it is too large Load Diff

View File

@ -1,22 +1,27 @@
include Makefile.o.dep include Makefile.o.dep
current_path := $(shell pwd)
global_relative_working_dir := $(shell relative_path $(current_path) $(GLOBAL_WORKING_DIR))
winix_include_paths = -I$(global_relative_working_dir)/winix/winixd -I$(global_relative_working_dir)/ezc/src -I$(global_relative_working_dir)/tito/src -I$(global_relative_working_dir)/pikotools
name = ticket.so name = ticket.so
all: $(name) all: $(name)
$(name): $(o) $(name): $(o)
$(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $(LDFLAGS) *.o $(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(winix_include_paths) $(LDFLAGS) *.o
%.o: %.cpp %.o: %.cpp
$(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< $(CXX) -c $(CXXFLAGS) $(winix_include_paths) $<
depend: depend:
makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep makedepend -Y. $(winix_include_paths) -f- *.cpp > Makefile.dep
echo -n "o = " > Makefile.o.dep echo -n "o = " > Makefile.o.dep
ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep

File diff suppressed because it is too large Load Diff

View File

@ -1,15 +1,20 @@
include Makefile.o.dep include Makefile.o.dep
current_path := $(shell pwd)
global_relative_working_dir := $(shell relative_path $(current_path) $(GLOBAL_WORKING_DIR))
winix_include_paths = -I$(global_relative_working_dir)/winix/winixd -I$(global_relative_working_dir)/ezc/src -I$(global_relative_working_dir)/tito/src -I$(global_relative_working_dir)/pikotools
all: $(o) all: $(o)
%.o: %.cpp %.o: %.cpp
$(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< $(CXX) -c $(CXXFLAGS) $(winix_include_paths) $<
depend: depend:
makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep makedepend -Y. $(winix_include_paths) -f- *.cpp > Makefile.dep
echo -n "o = " > Makefile.o.dep echo -n "o = " > Makefile.o.dep
ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep

File diff suppressed because it is too large Load Diff