UPPDIR1 = ./uppsrc/
UPPDIR2 = /home/cxl/.config/u++/umk/UppHub/gdal/
UPPDIR3 = /home/cxl/.config/u++/umk/UppHub/eigen/

UPPOUT = .cache/upp.out/
CINC   =  -I$(UPPDIR1) -I$(UPPDIR2) -I$(UPPDIR3) `pkg-config --cflags libpng` `pkg-config --cflags freetype2` `pkg-config --cflags fontconfig` `pkg-config --cflags x11` `pkg-config --cflags xcb` `pkg-config --cflags expat` -I./ -I$(UPPOUT)
Macro  =  -DflagGCC -DflagSHARED -DflagPOSIX -DflagLINUX
CXX = c++
LINKER = $(CXX)
CFLAGS = -O3 -ffunction-sections -fdata-sections 
CXXFLAGS = -O3 -ffunction-sections -fdata-sections  -std=c++17
LDFLAGS = -Wl,--gc-sections $(LINKOPTIONS)
LIBPATH =
AR = ar -sr

OutDir_umk = $(UPPOUT)umk/GCC-Gcc-Linux-Main-Posix-Shared/
Macro_umk = $(Macro) -DflagMAIN
OutDir_ide_Builders = $(UPPOUT)ide/Builders/GCC-Gcc-Linux-Posix-Shared/
Macro_ide_Builders = $(Macro)
OutDir_ide_Core = $(UPPOUT)ide/Core/GCC-Gcc-Linux-Posix-Shared/
Macro_ide_Core = $(Macro)
OutDir_ide_Android = $(UPPOUT)ide/Android/GCC-Gcc-Linux-Posix-Shared/
Macro_ide_Android = $(Macro)
OutDir_ide_Java = $(UPPOUT)ide/Java/GCC-Gcc-Linux-Posix-Shared/
Macro_ide_Java = $(Macro)
OutDir_plugin_png = $(UPPOUT)plugin/png/GCC-Gcc-Linux-Posix-Shared/
Macro_plugin_png = $(Macro)
OutDir_Draw = $(UPPOUT)Draw/GCC-Gcc-Linux-Posix-Shared/
Macro_Draw = $(Macro)
OutDir_Esc = $(UPPOUT)Esc/GCC-Gcc-Linux-Posix-Shared/
Macro_Esc = $(Macro)
OutDir_plugin_bz2 = $(UPPOUT)plugin/bz2/GCC-Gcc-Linux-Posix-Shared/
Macro_plugin_bz2 = $(Macro)
OutDir_plugin_lzma = $(UPPOUT)plugin/lzma/GCC-Gcc-Linux-Posix-Shared/
Macro_plugin_lzma = $(Macro)
OutDir_plugin_lz4 = $(UPPOUT)plugin/lz4/GCC-Gcc-Linux-Posix-Shared/
Macro_plugin_lz4 = $(Macro)
OutDir_plugin_zstd = $(UPPOUT)plugin/zstd/GCC-Gcc-Linux-Posix-Shared/
Macro_plugin_zstd = $(Macro)
OutDir_Core = $(UPPOUT)Core/GCC-Gcc-Linux-Posix-Shared/
Macro_Core = $(Macro)
OutDir_plugin_pcre = $(UPPOUT)plugin/pcre/GCC-Gcc-Linux-Posix-Shared/
Macro_plugin_pcre = $(Macro)

OutDir = $(OutDir_umk)
OutFile = ./umk

.PHONY: all
all: prepare $(OutFile)

.PHONY: build_info
build_info:
	(date '+#define bmYEAR    %y%n#define bmMONTH   %m%n#define bmDAY     %d%n#define bmHOUR    %H%n#define bmMINUTE  %M%n#define bmSECOND  %S%n#define bmTIME    Time( %y, %m, %d, %H, %M, %S )' | sed 's| 0\([[:digit:]]\)| \1|g' && \
	echo '#define bmMACHINE "'`hostname`'"' && \
	echo '#define bmUSER    "'`whoami`'"') > "$(UPPOUT)/build_info.h"

.PHONY: prepare
prepare: \
	$(OutDir_umk) \
	$(OutDir_ide_Builders) \
	$(OutDir_ide_Core) \
	$(OutDir_ide_Android) \
	$(OutDir_ide_Java) \
	$(OutDir_plugin_png) \
	$(OutDir_Draw) \
	$(OutDir_Esc) \
	$(OutDir_plugin_bz2) \
	$(OutDir_plugin_lzma) \
	$(OutDir_plugin_lz4) \
	$(OutDir_plugin_zstd) \
	$(OutDir_Core) \
	$(OutDir_plugin_pcre)

$(OutFile): build_info  \
	$(OutDir_umk)Console.o \
	$(OutDir_umk)IdeContext.o \
	$(OutDir_umk)MakeBuild.o \
	$(OutDir_umk)Export.o \
	$(OutDir_umk)UppHub.o \
	$(OutDir_umk)umake.o \
	$(OutDir_ide_Builders)Builders.a \
	$(OutDir_ide_Core)Core.a \
	$(OutDir_ide_Android)Android.a \
	$(OutDir_ide_Java)Java.a \
	$(OutDir_plugin_png)pngreg.o \
	$(OutDir_plugin_png)png.a \
	$(OutDir_Draw)Draw.a \
	$(OutDir_Esc)Esc.a \
	$(OutDir_plugin_bz2)bz2.a \
	$(OutDir_plugin_lzma)lzma.a \
	$(OutDir_plugin_lz4)lz4.a \
	$(OutDir_plugin_zstd)zstd.a \
	$(OutDir_Core)Core.a \
	$(OutDir_plugin_pcre)pcre.a
	$(LINKER) -o "$(OutFile)" -Wl,-s $(LIBPATH) -Wl,-O,2 $(LDFLAGS) -Wl,--start-group  \
		$(OutDir_umk)Console.o \
		$(OutDir_umk)IdeContext.o \
		$(OutDir_umk)MakeBuild.o \
		$(OutDir_umk)Export.o \
		$(OutDir_umk)UppHub.o \
		$(OutDir_umk)umake.o \
			$(OutDir_ide_Builders)Builders.a \
			$(OutDir_ide_Core)Core.a \
			$(OutDir_ide_Android)Android.a \
			$(OutDir_ide_Java)Java.a \
		$(OutDir_plugin_png)pngreg.o \
			$(OutDir_plugin_png)png.a \
			$(OutDir_Draw)Draw.a \
			$(OutDir_Esc)Esc.a \
			$(OutDir_plugin_bz2)bz2.a \
			$(OutDir_plugin_lzma)lzma.a \
			$(OutDir_plugin_lz4)lz4.a \
			$(OutDir_plugin_zstd)zstd.a \
			$(OutDir_Core)Core.a \
			$(OutDir_plugin_pcre)pcre.a \
			`pkg-config --libs libpng` \
			`pkg-config --libs freetype2` \
			`pkg-config --libs fontconfig` \
			`pkg-config --libs x11` \
			`pkg-config --libs xcb` \
			`pkg-config --libs expat` \
			-lbz2 \
			-lpthread \
			-ldl \
			-lrt \
			-lz -Wl,--end-group

$(OutDir_umk):
	mkdir -p $(OutDir_umk)

$(OutDir_umk)Console.o: $(UPPDIR1)umk/Console.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/Build.h \
	$(UPPDIR1)ide/Builders/BuilderComponents.h \
	$(UPPDIR1)ide/Builders/Builders.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)umk/Console.cpp \
	$(UPPDIR1)umk/umake.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_umk)  $(UPPDIR1)umk/Console.cpp -o $(OutDir_umk)Console.o

$(OutDir_umk)IdeContext.o: $(UPPDIR1)umk/IdeContext.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/Build.h \
	$(UPPDIR1)ide/Builders/BuilderComponents.h \
	$(UPPDIR1)ide/Builders/Builders.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)umk/IdeContext.cpp \
	$(UPPDIR1)umk/umake.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_umk)  $(UPPDIR1)umk/IdeContext.cpp -o $(OutDir_umk)IdeContext.o

$(OutDir_umk)MakeBuild.o: $(UPPDIR1)umk/MakeBuild.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/Build.h \
	$(UPPDIR1)ide/Builders/BuilderComponents.h \
	$(UPPDIR1)ide/Builders/Builders.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)umk/MakeBuild.cpp \
	$(UPPDIR1)umk/umake.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_umk)  $(UPPDIR1)umk/MakeBuild.cpp -o $(OutDir_umk)MakeBuild.o

$(OutDir_umk)Export.o: $(UPPDIR1)umk/Export.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/Build.h \
	$(UPPDIR1)ide/Builders/BuilderComponents.h \
	$(UPPDIR1)ide/Builders/Builders.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)umk/Export.cpp \
	$(UPPDIR1)umk/umake.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_umk)  $(UPPDIR1)umk/Export.cpp -o $(OutDir_umk)Export.o

$(OutDir_umk)UppHub.o: $(UPPDIR1)umk/UppHub.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/Build.h \
	$(UPPDIR1)ide/Builders/BuilderComponents.h \
	$(UPPDIR1)ide/Builders/Builders.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)umk/umake.h \
	$(UPPDIR1)umk/UppHub.cpp \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_umk)  $(UPPDIR1)umk/UppHub.cpp -o $(OutDir_umk)UppHub.o

$(OutDir_umk)umake.o: $(UPPDIR1)umk/umake.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/Build.h \
	$(UPPDIR1)ide/Builders/BuilderComponents.h \
	$(UPPDIR1)ide/Builders/Builders.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)umk/umake.cpp \
	$(UPPDIR1)umk/umake.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_umk)  $(UPPDIR1)umk/umake.cpp -o $(OutDir_umk)umake.o

$(OutDir_ide_Builders):
	mkdir -p $(OutDir_ide_Builders)

$(OutDir_ide_Builders)CppBuilder.o: $(UPPDIR1)ide/Builders/CppBuilder.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/Build.h \
	$(UPPDIR1)ide/Builders/BuilderComponents.h \
	$(UPPDIR1)ide/Builders/Builders.h \
	$(UPPDIR1)ide/Builders/CppBuilder.cpp \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Builders)  $(UPPDIR1)ide/Builders/CppBuilder.cpp -o $(OutDir_ide_Builders)CppBuilder.o

$(OutDir_ide_Builders)MakeFile.o: $(UPPDIR1)ide/Builders/MakeFile.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/Build.h \
	$(UPPDIR1)ide/Builders/BuilderComponents.h \
	$(UPPDIR1)ide/Builders/Builders.h \
	$(UPPDIR1)ide/Builders/MakeFile.cpp \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Builders)  $(UPPDIR1)ide/Builders/MakeFile.cpp -o $(OutDir_ide_Builders)MakeFile.o

$(OutDir_ide_Builders)CCJ.o: $(UPPDIR1)ide/Builders/CCJ.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/Build.h \
	$(UPPDIR1)ide/Builders/BuilderComponents.h \
	$(UPPDIR1)ide/Builders/Builders.h \
	$(UPPDIR1)ide/Builders/CCJ.cpp \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Builders)  $(UPPDIR1)ide/Builders/CCJ.cpp -o $(OutDir_ide_Builders)CCJ.o

$(OutDir_ide_Builders)GccBuilder.o: $(UPPDIR1)ide/Builders/GccBuilder.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/Build.h \
	$(UPPDIR1)ide/Builders/BuilderComponents.h \
	$(UPPDIR1)ide/Builders/Builders.h \
	$(UPPDIR1)ide/Builders/BuilderUtils.h \
	$(UPPDIR1)ide/Builders/GccBuilder.cpp \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Builders)  $(UPPDIR1)ide/Builders/GccBuilder.cpp -o $(OutDir_ide_Builders)GccBuilder.o

$(OutDir_ide_Builders)MscBuilder.o: $(UPPDIR1)ide/Builders/MscBuilder.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/Build.h \
	$(UPPDIR1)ide/Builders/BuilderComponents.h \
	$(UPPDIR1)ide/Builders/Builders.h \
	$(UPPDIR1)ide/Builders/coff.h \
	$(UPPDIR1)ide/Builders/MscBuilder.cpp \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Builders)  $(UPPDIR1)ide/Builders/MscBuilder.cpp -o $(OutDir_ide_Builders)MscBuilder.o

$(OutDir_ide_Builders)JavaBuilder.o: $(UPPDIR1)ide/Builders/JavaBuilder.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/Build.h \
	$(UPPDIR1)ide/Builders/BuilderComponents.h \
	$(UPPDIR1)ide/Builders/Builders.h \
	$(UPPDIR1)ide/Builders/JavaBuilder.cpp \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Builders)  $(UPPDIR1)ide/Builders/JavaBuilder.cpp -o $(OutDir_ide_Builders)JavaBuilder.o

$(OutDir_ide_Builders)ScriptBuilder.o: $(UPPDIR1)ide/Builders/ScriptBuilder.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/Build.h \
	$(UPPDIR1)ide/Builders/BuilderComponents.h \
	$(UPPDIR1)ide/Builders/Builders.h \
	$(UPPDIR1)ide/Builders/ScriptBuilder.cpp \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Builders)  $(UPPDIR1)ide/Builders/ScriptBuilder.cpp -o $(OutDir_ide_Builders)ScriptBuilder.o

$(OutDir_ide_Builders)Cocoa.o: $(UPPDIR1)ide/Builders/Cocoa.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/Build.h \
	$(UPPDIR1)ide/Builders/BuilderComponents.h \
	$(UPPDIR1)ide/Builders/Builders.h \
	$(UPPDIR1)ide/Builders/Cocoa.cpp \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Builders)  $(UPPDIR1)ide/Builders/Cocoa.cpp -o $(OutDir_ide_Builders)Cocoa.o

$(OutDir_ide_Builders)AndroidProject.o: $(UPPDIR1)ide/Builders/AndroidProject.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/AndroidProject.cpp \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Builders)  $(UPPDIR1)ide/Builders/AndroidProject.cpp -o $(OutDir_ide_Builders)AndroidProject.o

$(OutDir_ide_Builders)AndroidApplicationMakeFile.o: $(UPPDIR1)ide/Builders/AndroidApplicationMakeFile.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/AndroidApplicationMakeFile.cpp \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Builders)  $(UPPDIR1)ide/Builders/AndroidApplicationMakeFile.cpp -o $(OutDir_ide_Builders)AndroidApplicationMakeFile.o

$(OutDir_ide_Builders)AndroidMakeFile.o: $(UPPDIR1)ide/Builders/AndroidMakeFile.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/AndroidMakeFile.cpp \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Builders)  $(UPPDIR1)ide/Builders/AndroidMakeFile.cpp -o $(OutDir_ide_Builders)AndroidMakeFile.o

$(OutDir_ide_Builders)AndroidModuleMakeFile.o: $(UPPDIR1)ide/Builders/AndroidModuleMakeFile.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/AndroidModuleMakeFile.cpp \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Builders)  $(UPPDIR1)ide/Builders/AndroidModuleMakeFile.cpp -o $(OutDir_ide_Builders)AndroidModuleMakeFile.o

$(OutDir_ide_Builders)AndroidBuilder.o: $(UPPDIR1)ide/Builders/AndroidBuilder.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Android/Android.h \
	$(UPPDIR1)ide/Android/Devices.h \
	$(UPPDIR1)ide/Android/Executables.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/AndroidBuilder.cpp \
	$(UPPDIR1)ide/Builders/AndroidBuilder.h \
	$(UPPDIR1)ide/Builders/Build.h \
	$(UPPDIR1)ide/Builders/BuilderComponents.h \
	$(UPPDIR1)ide/Builders/Builders.h \
	$(UPPDIR1)ide/Builders/BuilderUtils.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)ide/Java/Java.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Builders)  $(UPPDIR1)ide/Builders/AndroidBuilder.cpp -o $(OutDir_ide_Builders)AndroidBuilder.o

$(OutDir_ide_Builders)AndroidBuilderCommands.o: $(UPPDIR1)ide/Builders/AndroidBuilderCommands.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Android/Android.h \
	$(UPPDIR1)ide/Android/Devices.h \
	$(UPPDIR1)ide/Android/Executables.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/AndroidBuilder.h \
	$(UPPDIR1)ide/Builders/AndroidBuilderCommands.cpp \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)ide/Java/Java.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Builders)  $(UPPDIR1)ide/Builders/AndroidBuilderCommands.cpp -o $(OutDir_ide_Builders)AndroidBuilderCommands.o

$(OutDir_ide_Builders)AndroidBuilderUtils.o: $(UPPDIR1)ide/Builders/AndroidBuilderUtils.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Android/Android.h \
	$(UPPDIR1)ide/Android/Devices.h \
	$(UPPDIR1)ide/Android/Executables.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/AndroidBuilder.h \
	$(UPPDIR1)ide/Builders/AndroidBuilderUtils.cpp \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)ide/Java/Java.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Builders)  $(UPPDIR1)ide/Builders/AndroidBuilderUtils.cpp -o $(OutDir_ide_Builders)AndroidBuilderUtils.o

$(OutDir_ide_Builders)AndroidModuleMakeFileBuilder.o: $(UPPDIR1)ide/Builders/AndroidModuleMakeFileBuilder.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Android/Android.h \
	$(UPPDIR1)ide/Android/Devices.h \
	$(UPPDIR1)ide/Android/Executables.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/AndroidBuilder.h \
	$(UPPDIR1)ide/Builders/AndroidModuleMakeFileBuilder.cpp \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)ide/Java/Java.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Builders)  $(UPPDIR1)ide/Builders/AndroidModuleMakeFileBuilder.cpp -o $(OutDir_ide_Builders)AndroidModuleMakeFileBuilder.o

$(OutDir_ide_Builders)Blitz.o: $(UPPDIR1)ide/Builders/Blitz.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/Blitz.cpp \
	$(UPPDIR1)ide/Builders/Build.h \
	$(UPPDIR1)ide/Builders/BuilderComponents.h \
	$(UPPDIR1)ide/Builders/Builders.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Builders)  $(UPPDIR1)ide/Builders/Blitz.cpp -o $(OutDir_ide_Builders)Blitz.o

$(OutDir_ide_Builders)Build.o: $(UPPDIR1)ide/Builders/Build.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Android/Android.h \
	$(UPPDIR1)ide/Android/Devices.h \
	$(UPPDIR1)ide/Android/Executables.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/AndroidBuilder.h \
	$(UPPDIR1)ide/Builders/Build.cpp \
	$(UPPDIR1)ide/Builders/Build.h \
	$(UPPDIR1)ide/Builders/BuilderComponents.h \
	$(UPPDIR1)ide/Builders/Builders.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)ide/Java/Java.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Builders)  $(UPPDIR1)ide/Builders/Build.cpp -o $(OutDir_ide_Builders)Build.o

$(OutDir_ide_Builders)Install.o: $(UPPDIR1)ide/Builders/Install.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Builders/Android.h \
	$(UPPDIR1)ide/Builders/Build.h \
	$(UPPDIR1)ide/Builders/BuilderComponents.h \
	$(UPPDIR1)ide/Builders/Builders.h \
	$(UPPDIR1)ide/Builders/Install.cpp \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Builders)  $(UPPDIR1)ide/Builders/Install.cpp -o $(OutDir_ide_Builders)Install.o

$(OutDir_ide_Builders)BuilderUtils.o: $(UPPDIR1)ide/Builders/BuilderUtils.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)ide/Builders/BuilderUtils.cpp \
	$(UPPDIR1)ide/Builders/BuilderUtils.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Builders)  $(UPPDIR1)ide/Builders/BuilderUtils.cpp -o $(OutDir_ide_Builders)BuilderUtils.o

$(OutDir_ide_Builders)Builders.a: \
	$(OutDir_ide_Builders)CppBuilder.o \
	$(OutDir_ide_Builders)MakeFile.o \
	$(OutDir_ide_Builders)CCJ.o \
	$(OutDir_ide_Builders)GccBuilder.o \
	$(OutDir_ide_Builders)MscBuilder.o \
	$(OutDir_ide_Builders)JavaBuilder.o \
	$(OutDir_ide_Builders)ScriptBuilder.o \
	$(OutDir_ide_Builders)Cocoa.o \
	$(OutDir_ide_Builders)AndroidProject.o \
	$(OutDir_ide_Builders)AndroidApplicationMakeFile.o \
	$(OutDir_ide_Builders)AndroidMakeFile.o \
	$(OutDir_ide_Builders)AndroidModuleMakeFile.o \
	$(OutDir_ide_Builders)AndroidBuilder.o \
	$(OutDir_ide_Builders)AndroidBuilderCommands.o \
	$(OutDir_ide_Builders)AndroidBuilderUtils.o \
	$(OutDir_ide_Builders)AndroidModuleMakeFileBuilder.o \
	$(OutDir_ide_Builders)Blitz.o \
	$(OutDir_ide_Builders)Build.o \
	$(OutDir_ide_Builders)Install.o \
	$(OutDir_ide_Builders)BuilderUtils.o
	$(AR) $(OutDir_ide_Builders)Builders.a \
		$(OutDir_ide_Builders)CppBuilder.o \
		$(OutDir_ide_Builders)MakeFile.o \
		$(OutDir_ide_Builders)CCJ.o \
		$(OutDir_ide_Builders)GccBuilder.o \
		$(OutDir_ide_Builders)MscBuilder.o \
		$(OutDir_ide_Builders)JavaBuilder.o \
		$(OutDir_ide_Builders)ScriptBuilder.o \
		$(OutDir_ide_Builders)Cocoa.o \
		$(OutDir_ide_Builders)AndroidProject.o \
		$(OutDir_ide_Builders)AndroidApplicationMakeFile.o \
		$(OutDir_ide_Builders)AndroidMakeFile.o \
		$(OutDir_ide_Builders)AndroidModuleMakeFile.o \
		$(OutDir_ide_Builders)AndroidBuilder.o \
		$(OutDir_ide_Builders)AndroidBuilderCommands.o \
		$(OutDir_ide_Builders)AndroidBuilderUtils.o \
		$(OutDir_ide_Builders)AndroidModuleMakeFileBuilder.o \
		$(OutDir_ide_Builders)Blitz.o \
		$(OutDir_ide_Builders)Build.o \
		$(OutDir_ide_Builders)Install.o \
		$(OutDir_ide_Builders)BuilderUtils.o

$(OutDir_ide_Core):
	mkdir -p $(OutDir_ide_Core)

$(OutDir_ide_Core)Ide.o: $(UPPDIR1)ide/Core/Ide.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Ide.cpp \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Core)  $(UPPDIR1)ide/Core/Ide.cpp -o $(OutDir_ide_Core)Ide.o

$(OutDir_ide_Core)Cache.o: $(UPPDIR1)ide/Core/Cache.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Core/Cache.cpp \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Core)  $(UPPDIR1)ide/Core/Cache.cpp -o $(OutDir_ide_Core)Cache.o

$(OutDir_ide_Core)Core.o: $(UPPDIR1)ide/Core/Core.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Core/Core.cpp \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Core)  $(UPPDIR1)ide/Core/Core.cpp -o $(OutDir_ide_Core)Core.o

$(OutDir_ide_Core)Builder.o: $(UPPDIR1)ide/Core/Builder.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Core/Builder.cpp \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Core)  $(UPPDIR1)ide/Core/Builder.cpp -o $(OutDir_ide_Core)Builder.o

$(OutDir_ide_Core)PPinfo.o: $(UPPDIR1)ide/Core/PPinfo.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)ide/Core/PPinfo.cpp \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Core)  $(UPPDIR1)ide/Core/PPinfo.cpp -o $(OutDir_ide_Core)PPinfo.o

$(OutDir_ide_Core)Assembly.o: $(UPPDIR1)ide/Core/Assembly.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Core/Assembly.cpp \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Core)  $(UPPDIR1)ide/Core/Assembly.cpp -o $(OutDir_ide_Core)Assembly.o

$(OutDir_ide_Core)Package.o: $(UPPDIR1)ide/Core/Package.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)ide/Core/Package.cpp \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Core)  $(UPPDIR1)ide/Core/Package.cpp -o $(OutDir_ide_Core)Package.o

$(OutDir_ide_Core)Workspace.o: $(UPPDIR1)ide/Core/Workspace.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)ide/Core/Workspace.cpp \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Core)  $(UPPDIR1)ide/Core/Workspace.cpp -o $(OutDir_ide_Core)Workspace.o

$(OutDir_ide_Core)usc.o: $(UPPDIR1)ide/Core/usc.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)ide/Core/usc.cpp \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Core)  $(UPPDIR1)ide/Core/usc.cpp -o $(OutDir_ide_Core)usc.o

$(OutDir_ide_Core)BinObj.o: $(UPPDIR1)ide/Core/BinObj.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Core/BinObj.cpp \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Core)  $(UPPDIR1)ide/Core/BinObj.cpp -o $(OutDir_ide_Core)BinObj.o

$(OutDir_ide_Core)Util.o: $(UPPDIR1)ide/Core/Util.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)ide/Core/Util.cpp \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Core)  $(UPPDIR1)ide/Core/Util.cpp -o $(OutDir_ide_Core)Util.o

$(OutDir_ide_Core)Host.o: $(UPPDIR1)ide/Core/Host.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.cpp \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Core)  $(UPPDIR1)ide/Core/Host.cpp -o $(OutDir_ide_Core)Host.o

$(OutDir_ide_Core)Logger.o: $(UPPDIR1)ide/Core/Logger.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)ide/Core/Logger.cpp \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Core)  $(UPPDIR1)ide/Core/Logger.cpp -o $(OutDir_ide_Core)Logger.o

$(OutDir_ide_Core)Core.a: \
	$(OutDir_ide_Core)Ide.o \
	$(OutDir_ide_Core)Cache.o \
	$(OutDir_ide_Core)Core.o \
	$(OutDir_ide_Core)Builder.o \
	$(OutDir_ide_Core)PPinfo.o \
	$(OutDir_ide_Core)Assembly.o \
	$(OutDir_ide_Core)Package.o \
	$(OutDir_ide_Core)Workspace.o \
	$(OutDir_ide_Core)usc.o \
	$(OutDir_ide_Core)BinObj.o \
	$(OutDir_ide_Core)Util.o \
	$(OutDir_ide_Core)Host.o \
	$(OutDir_ide_Core)Logger.o
	$(AR) $(OutDir_ide_Core)Core.a \
		$(OutDir_ide_Core)Ide.o \
		$(OutDir_ide_Core)Cache.o \
		$(OutDir_ide_Core)Core.o \
		$(OutDir_ide_Core)Builder.o \
		$(OutDir_ide_Core)PPinfo.o \
		$(OutDir_ide_Core)Assembly.o \
		$(OutDir_ide_Core)Package.o \
		$(OutDir_ide_Core)Workspace.o \
		$(OutDir_ide_Core)usc.o \
		$(OutDir_ide_Core)BinObj.o \
		$(OutDir_ide_Core)Util.o \
		$(OutDir_ide_Core)Host.o \
		$(OutDir_ide_Core)Logger.o

$(OutDir_ide_Android):
	mkdir -p $(OutDir_ide_Android)

$(OutDir_ide_Android)Android.o: $(UPPDIR1)ide/Android/Android.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Android/Android.cpp \
	$(UPPDIR1)ide/Android/Android.h \
	$(UPPDIR1)ide/Android/Devices.h \
	$(UPPDIR1)ide/Android/Executables.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Android)  $(UPPDIR1)ide/Android/Android.cpp -o $(OutDir_ide_Android)Android.o

$(OutDir_ide_Android)AndroidSDK.o: $(UPPDIR1)ide/Android/AndroidSDK.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Android/Android.h \
	$(UPPDIR1)ide/Android/AndroidSDK.cpp \
	$(UPPDIR1)ide/Android/Devices.h \
	$(UPPDIR1)ide/Android/Executables.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/pcre/lib/pcre.h \
	$(UPPDIR1)plugin/pcre/Pcre.h \
	$(UPPDIR1)plugin/pcre/RegExp.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Android)  $(UPPDIR1)ide/Android/AndroidSDK.cpp -o $(OutDir_ide_Android)AndroidSDK.o

$(OutDir_ide_Android)AndroidNDK.o: $(UPPDIR1)ide/Android/AndroidNDK.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Android/Android.h \
	$(UPPDIR1)ide/Android/AndroidNDK.cpp \
	$(UPPDIR1)ide/Android/Devices.h \
	$(UPPDIR1)ide/Android/Executables.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Android)  $(UPPDIR1)ide/Android/AndroidNDK.cpp -o $(OutDir_ide_Android)AndroidNDK.o

$(OutDir_ide_Android)Apk.o: $(UPPDIR1)ide/Android/Apk.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Android/Android.h \
	$(UPPDIR1)ide/Android/Apk.cpp \
	$(UPPDIR1)ide/Android/Devices.h \
	$(UPPDIR1)ide/Android/Executables.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Android)  $(UPPDIR1)ide/Android/Apk.cpp -o $(OutDir_ide_Android)Apk.o

$(OutDir_ide_Android)AndroidManifest.o: $(UPPDIR1)ide/Android/AndroidManifest.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Android/Android.h \
	$(UPPDIR1)ide/Android/AndroidManifest.cpp \
	$(UPPDIR1)ide/Android/Devices.h \
	$(UPPDIR1)ide/Android/Executables.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Android)  $(UPPDIR1)ide/Android/AndroidManifest.cpp -o $(OutDir_ide_Android)AndroidManifest.o

$(OutDir_ide_Android)Adb.o: $(UPPDIR1)ide/Android/Adb.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Android/Adb.cpp \
	$(UPPDIR1)ide/Android/Android.h \
	$(UPPDIR1)ide/Android/Devices.h \
	$(UPPDIR1)ide/Android/Executables.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Android)  $(UPPDIR1)ide/Android/Adb.cpp -o $(OutDir_ide_Android)Adb.o

$(OutDir_ide_Android)LogCat.o: $(UPPDIR1)ide/Android/LogCat.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Android/Executables.h \
	$(UPPDIR1)ide/Android/LogCat.cpp \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Android)  $(UPPDIR1)ide/Android/LogCat.cpp -o $(OutDir_ide_Android)LogCat.o

$(OutDir_ide_Android)NDKBuild.o: $(UPPDIR1)ide/Android/NDKBuild.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Android/Executables.h \
	$(UPPDIR1)ide/Android/NDKBuild.cpp \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Android)  $(UPPDIR1)ide/Android/NDKBuild.cpp -o $(OutDir_ide_Android)NDKBuild.o

$(OutDir_ide_Android)Android.a: \
	$(OutDir_ide_Android)Android.o \
	$(OutDir_ide_Android)AndroidSDK.o \
	$(OutDir_ide_Android)AndroidNDK.o \
	$(OutDir_ide_Android)Apk.o \
	$(OutDir_ide_Android)AndroidManifest.o \
	$(OutDir_ide_Android)Adb.o \
	$(OutDir_ide_Android)LogCat.o \
	$(OutDir_ide_Android)NDKBuild.o
	$(AR) $(OutDir_ide_Android)Android.a \
		$(OutDir_ide_Android)Android.o \
		$(OutDir_ide_Android)AndroidSDK.o \
		$(OutDir_ide_Android)AndroidNDK.o \
		$(OutDir_ide_Android)Apk.o \
		$(OutDir_ide_Android)AndroidManifest.o \
		$(OutDir_ide_Android)Adb.o \
		$(OutDir_ide_Android)LogCat.o \
		$(OutDir_ide_Android)NDKBuild.o

$(OutDir_ide_Java):
	mkdir -p $(OutDir_ide_Java)

$(OutDir_ide_Java)JavaVersion.o: $(UPPDIR1)ide/Java/JavaVersion.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)ide/Java/Java.h \
	$(UPPDIR1)ide/Java/JavaVersion.cpp \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Java)  $(UPPDIR1)ide/Java/JavaVersion.cpp -o $(OutDir_ide_Java)JavaVersion.o

$(OutDir_ide_Java)Java.o: $(UPPDIR1)ide/Java/Java.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)ide/Java/Java.cpp \
	$(UPPDIR1)ide/Java/Java.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Java)  $(UPPDIR1)ide/Java/Java.cpp -o $(OutDir_ide_Java)Java.o

$(OutDir_ide_Java)Jdk.o: $(UPPDIR1)ide/Java/Jdk.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)ide/Core/Core.h \
	$(UPPDIR1)ide/Core/Host.h \
	$(UPPDIR1)ide/Core/Logger.h \
	$(UPPDIR1)ide/Java/Java.h \
	$(UPPDIR1)ide/Java/Jdk.cpp \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Java)  $(UPPDIR1)ide/Java/Jdk.cpp -o $(OutDir_ide_Java)Jdk.o

$(OutDir_ide_Java)Java.a: \
	$(OutDir_ide_Java)JavaVersion.o \
	$(OutDir_ide_Java)Java.o \
	$(OutDir_ide_Java)Jdk.o
	$(AR) $(OutDir_ide_Java)Java.a \
		$(OutDir_ide_Java)JavaVersion.o \
		$(OutDir_ide_Java)Java.o \
		$(OutDir_ide_Java)Jdk.o

$(OutDir_plugin_png):
	mkdir -p $(OutDir_plugin_png)

$(OutDir_plugin_png)pnglib.o: $(UPPDIR1)plugin/png/pnglib.c \
	$(UPPDIR1)plugin/png/pnglib.c
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_png)  $(UPPDIR1)plugin/png/pnglib.c -o $(OutDir_plugin_png)pnglib.o

$(OutDir_plugin_png)pngupp.o: $(UPPDIR1)plugin/png/pngupp.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)plugin/png/png.h \
	$(UPPDIR1)plugin/png/pngupp.cpp \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_plugin_png)  $(UPPDIR1)plugin/png/pngupp.cpp -o $(OutDir_plugin_png)pngupp.o

$(OutDir_plugin_png)pngreg.o: $(UPPDIR1)plugin/png/pngreg.icpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)plugin/png/png.h \
	$(UPPDIR1)plugin/png/pngreg.icpp \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_plugin_png)  $(UPPDIR1)plugin/png/pngreg.icpp -o $(OutDir_plugin_png)pngreg.o

$(OutDir_plugin_png)png.a: \
	$(OutDir_plugin_png)pnglib.o \
	$(OutDir_plugin_png)pngupp.o
	$(AR) $(OutDir_plugin_png)png.a \
		$(OutDir_plugin_png)pnglib.o \
		$(OutDir_plugin_png)pngupp.o

$(OutDir_Draw):
	mkdir -p $(OutDir_Draw)

$(OutDir_Draw)Font.o: $(UPPDIR1)Draw/Font.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/Font.cpp \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/Font.cpp -o $(OutDir_Draw)Font.o

$(OutDir_Draw)FontCR.o: $(UPPDIR1)Draw/FontCR.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontCR.cpp \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Fonts.i \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/FontCR.cpp -o $(OutDir_Draw)FontCR.o

$(OutDir_Draw)FontWin32.o: $(UPPDIR1)Draw/FontWin32.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/FontWin32.cpp \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/FontWin32.cpp -o $(OutDir_Draw)FontWin32.o

$(OutDir_Draw)FontFc.o: $(UPPDIR1)Draw/FontFc.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontFc.cpp \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/FontFc.cpp -o $(OutDir_Draw)FontFc.o

$(OutDir_Draw)FontCocoNOMM.o: $(UPPDIR1)Draw/FontCocoNOMM.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontCocoNOMM.cpp \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/FontCocoNOMM.cpp -o $(OutDir_Draw)FontCocoNOMM.o

$(OutDir_Draw)Draw.o: $(UPPDIR1)Draw/Draw.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.cpp \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/Draw.cpp -o $(OutDir_Draw)Draw.o

$(OutDir_Draw)DrawText.o: $(UPPDIR1)Draw/DrawText.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/DrawText.cpp \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/DrawText.cpp -o $(OutDir_Draw)DrawText.o

$(OutDir_Draw)DrawData.o: $(UPPDIR1)Draw/DrawData.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawData.cpp \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/DrawData.cpp -o $(OutDir_Draw)DrawData.o

$(OutDir_Draw)Drawing.o: $(UPPDIR1)Draw/Drawing.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/Drawing.cpp \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/Drawing.cpp -o $(OutDir_Draw)Drawing.o

$(OutDir_Draw)ImageAnyDraw.o: $(UPPDIR1)Draw/ImageAnyDraw.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageAnyDraw.cpp \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/ImageAnyDraw.cpp -o $(OutDir_Draw)ImageAnyDraw.o

$(OutDir_Draw)DrawUtil.o: $(UPPDIR1)Draw/DrawUtil.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/DrawUtil.cpp \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/DrawUtil.cpp -o $(OutDir_Draw)DrawUtil.o

$(OutDir_Draw)DrawTextUtil.o: $(UPPDIR1)Draw/DrawTextUtil.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/DrawTextUtil.cpp \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/DrawTextUtil.cpp -o $(OutDir_Draw)DrawTextUtil.o

$(OutDir_Draw)Display.o: $(UPPDIR1)Draw/Display.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.cpp \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/iml_source.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/Display.cpp -o $(OutDir_Draw)Display.o

$(OutDir_Draw)Image.o: $(UPPDIR1)Draw/Image.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.cpp \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/Image.cpp -o $(OutDir_Draw)Image.o

$(OutDir_Draw)ImageBlit.o: $(UPPDIR1)Draw/ImageBlit.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageBlit.cpp \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/ImageBlit.cpp -o $(OutDir_Draw)ImageBlit.o

$(OutDir_Draw)RasterFormat.o: $(UPPDIR1)Draw/RasterFormat.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/RasterFormat.cpp \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/RasterFormat.cpp -o $(OutDir_Draw)RasterFormat.o

$(OutDir_Draw)RasterWrite.o: $(UPPDIR1)Draw/RasterWrite.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/RasterWrite.cpp \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/RasterWrite.cpp -o $(OutDir_Draw)RasterWrite.o

$(OutDir_Draw)Palette.o: $(UPPDIR1)Draw/Palette.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Palette.cpp \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/Palette.cpp -o $(OutDir_Draw)Palette.o

$(OutDir_Draw)Raster.o: $(UPPDIR1)Draw/Raster.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.cpp \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/Raster.cpp -o $(OutDir_Draw)Raster.o

$(OutDir_Draw)RasterEncoder.o: $(UPPDIR1)Draw/RasterEncoder.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/RasterEncoder.cpp \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/RasterEncoder.cpp -o $(OutDir_Draw)RasterEncoder.o

$(OutDir_Draw)ImageOp.o: $(UPPDIR1)Draw/ImageOp.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.cpp \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/ImageOp.cpp -o $(OutDir_Draw)ImageOp.o

$(OutDir_Draw)ImageChOp.o: $(UPPDIR1)Draw/ImageChOp.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageChOp.cpp \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/ImageChOp.cpp -o $(OutDir_Draw)ImageChOp.o

$(OutDir_Draw)Mify.o: $(UPPDIR1)Draw/Mify.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Mify.cpp \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/Mify.cpp -o $(OutDir_Draw)Mify.o

$(OutDir_Draw)ImageScale.o: $(UPPDIR1)Draw/ImageScale.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/ImageScale.cpp \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/ImageScale.cpp -o $(OutDir_Draw)ImageScale.o

$(OutDir_Draw)RescaleFilter.o: $(UPPDIR1)Draw/RescaleFilter.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/RescaleFilter.cpp \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/RescaleFilter.cpp -o $(OutDir_Draw)RescaleFilter.o

$(OutDir_Draw)MakeCache.o: $(UPPDIR1)Draw/MakeCache.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/MakeCache.cpp \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/MakeCache.cpp -o $(OutDir_Draw)MakeCache.o

$(OutDir_Draw)DrawRasterData.o: $(UPPDIR1)Draw/DrawRasterData.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/DrawRasterData.cpp \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/DrawRasterData.cpp -o $(OutDir_Draw)DrawRasterData.o

$(OutDir_Draw)Uhd.o: $(UPPDIR1)Draw/Uhd.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)Draw/Uhd.cpp \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/Uhd.cpp -o $(OutDir_Draw)Uhd.o

$(OutDir_Draw)Iml.o: $(UPPDIR1)Draw/Iml.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/Iml.cpp \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/Iml.cpp -o $(OutDir_Draw)Iml.o

$(OutDir_Draw)DDARasterizer.o: $(UPPDIR1)Draw/DDARasterizer.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.cpp \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/DDARasterizer.cpp -o $(OutDir_Draw)DDARasterizer.o

$(OutDir_Draw)SDrawClip.o: $(UPPDIR1)Draw/SDrawClip.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SDrawClip.cpp \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/SDrawClip.cpp -o $(OutDir_Draw)SDrawClip.o

$(OutDir_Draw)SDrawPut.o: $(UPPDIR1)Draw/SDrawPut.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SDrawPut.cpp \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/SDrawPut.cpp -o $(OutDir_Draw)SDrawPut.o

$(OutDir_Draw)SDrawText.o: $(UPPDIR1)Draw/SDrawText.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SDrawText.cpp \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/SDrawText.cpp -o $(OutDir_Draw)SDrawText.o

$(OutDir_Draw)SDraw.o: $(UPPDIR1)Draw/SDraw.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.cpp \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/SDraw.cpp -o $(OutDir_Draw)SDraw.o

$(OutDir_Draw)SImageDraw.o: $(UPPDIR1)Draw/SImageDraw.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SImageDraw.cpp \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/SImageDraw.cpp -o $(OutDir_Draw)SImageDraw.o

$(OutDir_Draw)Cham.o: $(UPPDIR1)Draw/Cham.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.cpp \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/Cham.cpp -o $(OutDir_Draw)Cham.o

$(OutDir_Draw)SColors.o: $(UPPDIR1)Draw/SColors.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Draw/Cham.h \
	$(UPPDIR1)Draw/DDARasterizer.h \
	$(UPPDIR1)Draw/Display.h \
	$(UPPDIR1)Draw/Draw.h \
	$(UPPDIR1)Draw/DrawImg.iml \
	$(UPPDIR1)Draw/FontInt.h \
	$(UPPDIR1)Draw/Image.h \
	$(UPPDIR1)Draw/ImageOp.h \
	$(UPPDIR1)Draw/iml_header.h \
	$(UPPDIR1)Draw/Raster.h \
	$(UPPDIR1)Draw/SColors.cpp \
	$(UPPDIR1)Draw/SDraw.h \
	$(UPPDIR1)Draw/SIMD.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Draw)  $(UPPDIR1)Draw/SColors.cpp -o $(OutDir_Draw)SColors.o

$(OutDir_Draw)Draw.a: \
	$(OutDir_Draw)Font.o \
	$(OutDir_Draw)FontCR.o \
	$(OutDir_Draw)FontWin32.o \
	$(OutDir_Draw)FontFc.o \
	$(OutDir_Draw)FontCocoNOMM.o \
	$(OutDir_Draw)Draw.o \
	$(OutDir_Draw)DrawText.o \
	$(OutDir_Draw)DrawData.o \
	$(OutDir_Draw)Drawing.o \
	$(OutDir_Draw)ImageAnyDraw.o \
	$(OutDir_Draw)DrawUtil.o \
	$(OutDir_Draw)DrawTextUtil.o \
	$(OutDir_Draw)Display.o \
	$(OutDir_Draw)Image.o \
	$(OutDir_Draw)ImageBlit.o \
	$(OutDir_Draw)RasterFormat.o \
	$(OutDir_Draw)RasterWrite.o \
	$(OutDir_Draw)Palette.o \
	$(OutDir_Draw)Raster.o \
	$(OutDir_Draw)RasterEncoder.o \
	$(OutDir_Draw)ImageOp.o \
	$(OutDir_Draw)ImageChOp.o \
	$(OutDir_Draw)Mify.o \
	$(OutDir_Draw)ImageScale.o \
	$(OutDir_Draw)RescaleFilter.o \
	$(OutDir_Draw)MakeCache.o \
	$(OutDir_Draw)DrawRasterData.o \
	$(OutDir_Draw)Uhd.o \
	$(OutDir_Draw)Iml.o \
	$(OutDir_Draw)DDARasterizer.o \
	$(OutDir_Draw)SDrawClip.o \
	$(OutDir_Draw)SDrawPut.o \
	$(OutDir_Draw)SDrawText.o \
	$(OutDir_Draw)SDraw.o \
	$(OutDir_Draw)SImageDraw.o \
	$(OutDir_Draw)Cham.o \
	$(OutDir_Draw)SColors.o
	$(AR) $(OutDir_Draw)Draw.a \
		$(OutDir_Draw)Font.o \
		$(OutDir_Draw)FontCR.o \
		$(OutDir_Draw)FontWin32.o \
		$(OutDir_Draw)FontFc.o \
		$(OutDir_Draw)FontCocoNOMM.o \
		$(OutDir_Draw)Draw.o \
		$(OutDir_Draw)DrawText.o \
		$(OutDir_Draw)DrawData.o \
		$(OutDir_Draw)Drawing.o \
		$(OutDir_Draw)ImageAnyDraw.o \
		$(OutDir_Draw)DrawUtil.o \
		$(OutDir_Draw)DrawTextUtil.o \
		$(OutDir_Draw)Display.o \
		$(OutDir_Draw)Image.o \
		$(OutDir_Draw)ImageBlit.o \
		$(OutDir_Draw)RasterFormat.o \
		$(OutDir_Draw)RasterWrite.o \
		$(OutDir_Draw)Palette.o \
		$(OutDir_Draw)Raster.o \
		$(OutDir_Draw)RasterEncoder.o \
		$(OutDir_Draw)ImageOp.o \
		$(OutDir_Draw)ImageChOp.o \
		$(OutDir_Draw)Mify.o \
		$(OutDir_Draw)ImageScale.o \
		$(OutDir_Draw)RescaleFilter.o \
		$(OutDir_Draw)MakeCache.o \
		$(OutDir_Draw)DrawRasterData.o \
		$(OutDir_Draw)Uhd.o \
		$(OutDir_Draw)Iml.o \
		$(OutDir_Draw)DDARasterizer.o \
		$(OutDir_Draw)SDrawClip.o \
		$(OutDir_Draw)SDrawPut.o \
		$(OutDir_Draw)SDrawText.o \
		$(OutDir_Draw)SDraw.o \
		$(OutDir_Draw)SImageDraw.o \
		$(OutDir_Draw)Cham.o \
		$(OutDir_Draw)SColors.o

$(OutDir_Esc):
	mkdir -p $(OutDir_Esc)

$(OutDir_Esc)EscValue.o: $(UPPDIR1)Esc/EscValue.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)Esc/EscValue.cpp \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Esc)  $(UPPDIR1)Esc/EscValue.cpp -o $(OutDir_Esc)EscValue.o

$(OutDir_Esc)EscArray.o: $(UPPDIR1)Esc/EscArray.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)Esc/EscArray.cpp \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Esc)  $(UPPDIR1)Esc/EscArray.cpp -o $(OutDir_Esc)EscArray.o

$(OutDir_Esc)EscMap.o: $(UPPDIR1)Esc/EscMap.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)Esc/EscMap.cpp \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Esc)  $(UPPDIR1)Esc/EscMap.cpp -o $(OutDir_Esc)EscMap.o

$(OutDir_Esc)Esc.o: $(UPPDIR1)Esc/Esc.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.cpp \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Esc)  $(UPPDIR1)Esc/Esc.cpp -o $(OutDir_Esc)Esc.o

$(OutDir_Esc)EscRun.o: $(UPPDIR1)Esc/EscRun.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)Esc/EscRun.cpp \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Esc)  $(UPPDIR1)Esc/EscRun.cpp -o $(OutDir_Esc)EscRun.o

$(OutDir_Esc)EscStdLib.o: $(UPPDIR1)Esc/EscStdLib.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)Esc/EscStdLib.cpp \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Esc)  $(UPPDIR1)Esc/EscStdLib.cpp -o $(OutDir_Esc)EscStdLib.o

$(OutDir_Esc)Value.o: $(UPPDIR1)Esc/Value.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)Esc/Esc.h \
	$(UPPDIR1)Esc/Value.cpp \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Esc)  $(UPPDIR1)Esc/Value.cpp -o $(OutDir_Esc)Value.o

$(OutDir_Esc)Esc.a: \
	$(OutDir_Esc)EscValue.o \
	$(OutDir_Esc)EscArray.o \
	$(OutDir_Esc)EscMap.o \
	$(OutDir_Esc)Esc.o \
	$(OutDir_Esc)EscRun.o \
	$(OutDir_Esc)EscStdLib.o \
	$(OutDir_Esc)Value.o
	$(AR) $(OutDir_Esc)Esc.a \
		$(OutDir_Esc)EscValue.o \
		$(OutDir_Esc)EscArray.o \
		$(OutDir_Esc)EscMap.o \
		$(OutDir_Esc)Esc.o \
		$(OutDir_Esc)EscRun.o \
		$(OutDir_Esc)EscStdLib.o \
		$(OutDir_Esc)Value.o

$(OutDir_plugin_bz2):
	mkdir -p $(OutDir_plugin_bz2)

$(OutDir_plugin_bz2)bz2upp.o: $(UPPDIR1)plugin/bz2/bz2upp.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)plugin/bz2/bz2.h \
	$(UPPDIR1)plugin/bz2/bz2upp.cpp \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_plugin_bz2)  $(UPPDIR1)plugin/bz2/bz2upp.cpp -o $(OutDir_plugin_bz2)bz2upp.o

$(OutDir_plugin_bz2)bzlib.o: $(UPPDIR1)plugin/bz2/bzlib.c \
	$(UPPDIR1)plugin/bz2/bzlib.c
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_bz2)  $(UPPDIR1)plugin/bz2/bzlib.c -o $(OutDir_plugin_bz2)bzlib.o

$(OutDir_plugin_bz2)bz2.a: \
	$(OutDir_plugin_bz2)bz2upp.o \
	$(OutDir_plugin_bz2)bzlib.o
	$(AR) $(OutDir_plugin_bz2)bz2.a \
		$(OutDir_plugin_bz2)bz2upp.o \
		$(OutDir_plugin_bz2)bzlib.o

$(OutDir_plugin_lzma):
	mkdir -p $(OutDir_plugin_lzma)

$(OutDir_plugin_lzma)lzma.o: $(UPPDIR1)plugin/lzma/lzma.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)plugin/lzma/lib/7zTypes.h \
	$(UPPDIR1)plugin/lzma/lib/LzmaDec.h \
	$(UPPDIR1)plugin/lzma/lib/LzmaEnc.h \
	$(UPPDIR1)plugin/lzma/lzma.cpp \
	$(UPPDIR1)plugin/lzma/lzma.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_plugin_lzma)  $(UPPDIR1)plugin/lzma/lzma.cpp -o $(OutDir_plugin_lzma)lzma.o

$(OutDir_plugin_lzma)LzFind.o: $(UPPDIR1)plugin/lzma/lib/LzFind.c \
	$(UPPDIR1)plugin/lzma/lib/7zTypes.h \
	$(UPPDIR1)plugin/lzma/lib/Compiler.h \
	$(UPPDIR1)plugin/lzma/lib/CpuArch.h \
	$(UPPDIR1)plugin/lzma/lib/LzFind.c \
	$(UPPDIR1)plugin/lzma/lib/LzFind.h \
	$(UPPDIR1)plugin/lzma/lib/LzHash.h \
	$(UPPDIR1)plugin/lzma/lib/Precomp.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_lzma)  $(UPPDIR1)plugin/lzma/lib/LzFind.c -o $(OutDir_plugin_lzma)LzFind.o

$(OutDir_plugin_lzma)LzmaDec.o: $(UPPDIR1)plugin/lzma/lib/LzmaDec.c \
	$(UPPDIR1)plugin/lzma/lib/7zTypes.h \
	$(UPPDIR1)plugin/lzma/lib/Compiler.h \
	$(UPPDIR1)plugin/lzma/lib/LzmaDec.c \
	$(UPPDIR1)plugin/lzma/lib/LzmaDec.h \
	$(UPPDIR1)plugin/lzma/lib/Precomp.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_lzma)  $(UPPDIR1)plugin/lzma/lib/LzmaDec.c -o $(OutDir_plugin_lzma)LzmaDec.o

$(OutDir_plugin_lzma)LzmaEnc.o: $(UPPDIR1)plugin/lzma/lib/LzmaEnc.c \
	$(UPPDIR1)plugin/lzma/lib/7zTypes.h \
	$(UPPDIR1)plugin/lzma/lib/Compiler.h \
	$(UPPDIR1)plugin/lzma/lib/CpuArch.h \
	$(UPPDIR1)plugin/lzma/lib/LzFind.h \
	$(UPPDIR1)plugin/lzma/lib/LzmaEnc.c \
	$(UPPDIR1)plugin/lzma/lib/LzmaEnc.h \
	$(UPPDIR1)plugin/lzma/lib/Precomp.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_lzma)  $(UPPDIR1)plugin/lzma/lib/LzmaEnc.c -o $(OutDir_plugin_lzma)LzmaEnc.o

$(OutDir_plugin_lzma)CpuArch.o: $(UPPDIR1)plugin/lzma/lib/CpuArch.c \
	$(UPPDIR1)plugin/lzma/lib/7zTypes.h \
	$(UPPDIR1)plugin/lzma/lib/Compiler.h \
	$(UPPDIR1)plugin/lzma/lib/CpuArch.c \
	$(UPPDIR1)plugin/lzma/lib/CpuArch.h \
	$(UPPDIR1)plugin/lzma/lib/Precomp.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_lzma)  $(UPPDIR1)plugin/lzma/lib/CpuArch.c -o $(OutDir_plugin_lzma)CpuArch.o

$(OutDir_plugin_lzma)lzma.a: \
	$(OutDir_plugin_lzma)lzma.o \
	$(OutDir_plugin_lzma)LzFind.o \
	$(OutDir_plugin_lzma)LzmaDec.o \
	$(OutDir_plugin_lzma)LzmaEnc.o \
	$(OutDir_plugin_lzma)CpuArch.o
	$(AR) $(OutDir_plugin_lzma)lzma.a \
		$(OutDir_plugin_lzma)lzma.o \
		$(OutDir_plugin_lzma)LzFind.o \
		$(OutDir_plugin_lzma)LzmaDec.o \
		$(OutDir_plugin_lzma)LzmaEnc.o \
		$(OutDir_plugin_lzma)CpuArch.o

$(OutDir_plugin_lz4):
	mkdir -p $(OutDir_plugin_lz4)

$(OutDir_plugin_lz4)Compress.o: $(UPPDIR1)plugin/lz4/Compress.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)plugin/lz4/Compress.cpp \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_plugin_lz4)  $(UPPDIR1)plugin/lz4/Compress.cpp -o $(OutDir_plugin_lz4)Compress.o

$(OutDir_plugin_lz4)Decompress.o: $(UPPDIR1)plugin/lz4/Decompress.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)plugin/lz4/Decompress.cpp \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_plugin_lz4)  $(UPPDIR1)plugin/lz4/Decompress.cpp -o $(OutDir_plugin_lz4)Decompress.o

$(OutDir_plugin_lz4)util.o: $(UPPDIR1)plugin/lz4/util.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)plugin/lz4/lz4.h \
	$(UPPDIR1)plugin/lz4/util.cpp \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_plugin_lz4)  $(UPPDIR1)plugin/lz4/util.cpp -o $(OutDir_plugin_lz4)util.o

$(OutDir_plugin_lz4)lz4.a: \
	$(OutDir_plugin_lz4)Compress.o \
	$(OutDir_plugin_lz4)Decompress.o \
	$(OutDir_plugin_lz4)util.o
	$(AR) $(OutDir_plugin_lz4)lz4.a \
		$(OutDir_plugin_lz4)Compress.o \
		$(OutDir_plugin_lz4)Decompress.o \
		$(OutDir_plugin_lz4)util.o

$(OutDir_plugin_zstd):
	mkdir -p $(OutDir_plugin_zstd)

$(OutDir_plugin_zstd)Compress.o: $(UPPDIR1)plugin/zstd/Compress.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)plugin/zstd/Compress.cpp \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/Compress.cpp -o $(OutDir_plugin_zstd)Compress.o

$(OutDir_plugin_zstd)Decompress.o: $(UPPDIR1)plugin/zstd/Decompress.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)plugin/zstd/Decompress.cpp \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/Decompress.cpp -o $(OutDir_plugin_zstd)Decompress.o

$(OutDir_plugin_zstd)Util.o: $(UPPDIR1)plugin/zstd/Util.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/Util.cpp \
	$(UPPDIR1)plugin/zstd/zstd.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/Util.cpp -o $(OutDir_plugin_zstd)Util.o

$(OutDir_plugin_zstd)huf_decompress.o: $(UPPDIR1)plugin/zstd/lib/huf_decompress.c \
	$(UPPDIR1)plugin/zstd/lib/bits.h \
	$(UPPDIR1)plugin/zstd/lib/bitstream.h \
	$(UPPDIR1)plugin/zstd/lib/compiler.h \
	$(UPPDIR1)plugin/zstd/lib/cpu.h \
	$(UPPDIR1)plugin/zstd/lib/debug.h \
	$(UPPDIR1)plugin/zstd/lib/error_private.h \
	$(UPPDIR1)plugin/zstd/lib/fse.h \
	$(UPPDIR1)plugin/zstd/lib/huf.h \
	$(UPPDIR1)plugin/zstd/lib/huf_decompress.c \
	$(UPPDIR1)plugin/zstd/lib/mem.h \
	$(UPPDIR1)plugin/zstd/lib/portability_macros.h \
	$(UPPDIR1)plugin/zstd/lib/xxhash.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_deps.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_errors.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_internal.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/huf_decompress.c -o $(OutDir_plugin_zstd)huf_decompress.o

$(OutDir_plugin_zstd)zstd_ddict.o: $(UPPDIR1)plugin/zstd/lib/zstd_ddict.c \
	$(UPPDIR1)plugin/zstd/lib/allocations.h \
	$(UPPDIR1)plugin/zstd/lib/compiler.h \
	$(UPPDIR1)plugin/zstd/lib/cpu.h \
	$(UPPDIR1)plugin/zstd/lib/debug.h \
	$(UPPDIR1)plugin/zstd/lib/error_private.h \
	$(UPPDIR1)plugin/zstd/lib/fse.h \
	$(UPPDIR1)plugin/zstd/lib/huf.h \
	$(UPPDIR1)plugin/zstd/lib/mem.h \
	$(UPPDIR1)plugin/zstd/lib/portability_macros.h \
	$(UPPDIR1)plugin/zstd/lib/xxhash.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_ddict.c \
	$(UPPDIR1)plugin/zstd/lib/zstd_ddict.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_decompress_internal.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_deps.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_errors.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_internal.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/zstd_ddict.c -o $(OutDir_plugin_zstd)zstd_ddict.o

$(OutDir_plugin_zstd)zstd_decompress.o: $(UPPDIR1)plugin/zstd/lib/zstd_decompress.c \
	$(UPPDIR1)plugin/zstd/lib/zstd_decompress.c
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/zstd_decompress.c -o $(OutDir_plugin_zstd)zstd_decompress.o

$(OutDir_plugin_zstd)zstd_decompress_block.o: $(UPPDIR1)plugin/zstd/lib/zstd_decompress_block.c \
	$(UPPDIR1)plugin/zstd/lib/bits.h \
	$(UPPDIR1)plugin/zstd/lib/compiler.h \
	$(UPPDIR1)plugin/zstd/lib/cpu.h \
	$(UPPDIR1)plugin/zstd/lib/debug.h \
	$(UPPDIR1)plugin/zstd/lib/error_private.h \
	$(UPPDIR1)plugin/zstd/lib/fse.h \
	$(UPPDIR1)plugin/zstd/lib/huf.h \
	$(UPPDIR1)plugin/zstd/lib/mem.h \
	$(UPPDIR1)plugin/zstd/lib/portability_macros.h \
	$(UPPDIR1)plugin/zstd/lib/xxhash.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_ddict.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_decompress_block.c \
	$(UPPDIR1)plugin/zstd/lib/zstd_decompress_block.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_decompress_internal.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_deps.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_errors.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_internal.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/zstd_decompress_block.c -o $(OutDir_plugin_zstd)zstd_decompress_block.o

$(OutDir_plugin_zstd)entropy_common.o: $(UPPDIR1)plugin/zstd/lib/entropy_common.c \
	$(UPPDIR1)plugin/zstd/lib/bits.h \
	$(UPPDIR1)plugin/zstd/lib/compiler.h \
	$(UPPDIR1)plugin/zstd/lib/debug.h \
	$(UPPDIR1)plugin/zstd/lib/entropy_common.c \
	$(UPPDIR1)plugin/zstd/lib/error_private.h \
	$(UPPDIR1)plugin/zstd/lib/fse.h \
	$(UPPDIR1)plugin/zstd/lib/huf.h \
	$(UPPDIR1)plugin/zstd/lib/mem.h \
	$(UPPDIR1)plugin/zstd/lib/portability_macros.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_deps.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_errors.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/entropy_common.c -o $(OutDir_plugin_zstd)entropy_common.o

$(OutDir_plugin_zstd)fse_compress.o: $(UPPDIR1)plugin/zstd/lib/fse_compress.c \
	$(UPPDIR1)plugin/zstd/lib/bits.h \
	$(UPPDIR1)plugin/zstd/lib/bitstream.h \
	$(UPPDIR1)plugin/zstd/lib/compiler.h \
	$(UPPDIR1)plugin/zstd/lib/debug.h \
	$(UPPDIR1)plugin/zstd/lib/error_private.h \
	$(UPPDIR1)plugin/zstd/lib/fse.h \
	$(UPPDIR1)plugin/zstd/lib/fse_compress.c \
	$(UPPDIR1)plugin/zstd/lib/hist.h \
	$(UPPDIR1)plugin/zstd/lib/mem.h \
	$(UPPDIR1)plugin/zstd/lib/portability_macros.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_deps.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_errors.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/fse_compress.c -o $(OutDir_plugin_zstd)fse_compress.o

$(OutDir_plugin_zstd)fse_decompress.o: $(UPPDIR1)plugin/zstd/lib/fse_decompress.c \
	$(UPPDIR1)plugin/zstd/lib/bits.h \
	$(UPPDIR1)plugin/zstd/lib/bitstream.h \
	$(UPPDIR1)plugin/zstd/lib/compiler.h \
	$(UPPDIR1)plugin/zstd/lib/debug.h \
	$(UPPDIR1)plugin/zstd/lib/error_private.h \
	$(UPPDIR1)plugin/zstd/lib/fse.h \
	$(UPPDIR1)plugin/zstd/lib/fse_decompress.c \
	$(UPPDIR1)plugin/zstd/lib/mem.h \
	$(UPPDIR1)plugin/zstd/lib/portability_macros.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_deps.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_errors.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/fse_decompress.c -o $(OutDir_plugin_zstd)fse_decompress.o

$(OutDir_plugin_zstd)huf_compress.o: $(UPPDIR1)plugin/zstd/lib/huf_compress.c \
	$(UPPDIR1)plugin/zstd/lib/bits.h \
	$(UPPDIR1)plugin/zstd/lib/bitstream.h \
	$(UPPDIR1)plugin/zstd/lib/compiler.h \
	$(UPPDIR1)plugin/zstd/lib/debug.h \
	$(UPPDIR1)plugin/zstd/lib/error_private.h \
	$(UPPDIR1)plugin/zstd/lib/fse.h \
	$(UPPDIR1)plugin/zstd/lib/hist.h \
	$(UPPDIR1)plugin/zstd/lib/huf.h \
	$(UPPDIR1)plugin/zstd/lib/huf_compress.c \
	$(UPPDIR1)plugin/zstd/lib/mem.h \
	$(UPPDIR1)plugin/zstd/lib/portability_macros.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_deps.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_errors.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/huf_compress.c -o $(OutDir_plugin_zstd)huf_compress.o

$(OutDir_plugin_zstd)zstd_common.o: $(UPPDIR1)plugin/zstd/lib/zstd_common.c \
	$(UPPDIR1)plugin/zstd/lib/compiler.h \
	$(UPPDIR1)plugin/zstd/lib/cpu.h \
	$(UPPDIR1)plugin/zstd/lib/debug.h \
	$(UPPDIR1)plugin/zstd/lib/error_private.h \
	$(UPPDIR1)plugin/zstd/lib/fse.h \
	$(UPPDIR1)plugin/zstd/lib/huf.h \
	$(UPPDIR1)plugin/zstd/lib/mem.h \
	$(UPPDIR1)plugin/zstd/lib/portability_macros.h \
	$(UPPDIR1)plugin/zstd/lib/xxhash.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_common.c \
	$(UPPDIR1)plugin/zstd/lib/zstd_deps.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_errors.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_internal.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/zstd_common.c -o $(OutDir_plugin_zstd)zstd_common.o

$(OutDir_plugin_zstd)zstd_compress.o: $(UPPDIR1)plugin/zstd/lib/zstd_compress.c \
	$(UPPDIR1)plugin/zstd/lib/allocations.h \
	$(UPPDIR1)plugin/zstd/lib/bits.h \
	$(UPPDIR1)plugin/zstd/lib/clevels.h \
	$(UPPDIR1)plugin/zstd/lib/compiler.h \
	$(UPPDIR1)plugin/zstd/lib/cpu.h \
	$(UPPDIR1)plugin/zstd/lib/debug.h \
	$(UPPDIR1)plugin/zstd/lib/error_private.h \
	$(UPPDIR1)plugin/zstd/lib/fse.h \
	$(UPPDIR1)plugin/zstd/lib/hist.h \
	$(UPPDIR1)plugin/zstd/lib/huf.h \
	$(UPPDIR1)plugin/zstd/lib/mem.h \
	$(UPPDIR1)plugin/zstd/lib/portability_macros.h \
	$(UPPDIR1)plugin/zstd/lib/xxhash.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_compress.c \
	$(UPPDIR1)plugin/zstd/lib/zstd_compress_internal.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_compress_literals.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_compress_sequences.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_compress_superblock.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_cwksp.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_deps.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_double_fast.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_errors.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_fast.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_internal.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_lazy.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_ldm.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_opt.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/zstd_compress.c -o $(OutDir_plugin_zstd)zstd_compress.o

$(OutDir_plugin_zstd)zstd_opt.o: $(UPPDIR1)plugin/zstd/lib/zstd_opt.c \
	$(UPPDIR1)plugin/zstd/lib/allocations.h \
	$(UPPDIR1)plugin/zstd/lib/bits.h \
	$(UPPDIR1)plugin/zstd/lib/compiler.h \
	$(UPPDIR1)plugin/zstd/lib/cpu.h \
	$(UPPDIR1)plugin/zstd/lib/debug.h \
	$(UPPDIR1)plugin/zstd/lib/error_private.h \
	$(UPPDIR1)plugin/zstd/lib/fse.h \
	$(UPPDIR1)plugin/zstd/lib/hist.h \
	$(UPPDIR1)plugin/zstd/lib/huf.h \
	$(UPPDIR1)plugin/zstd/lib/mem.h \
	$(UPPDIR1)plugin/zstd/lib/portability_macros.h \
	$(UPPDIR1)plugin/zstd/lib/xxhash.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_compress_internal.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_cwksp.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_deps.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_errors.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_internal.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_opt.c \
	$(UPPDIR1)plugin/zstd/lib/zstd_opt.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/zstd_opt.c -o $(OutDir_plugin_zstd)zstd_opt.o

$(OutDir_plugin_zstd)zstdmt_compress.o: $(UPPDIR1)plugin/zstd/lib/zstdmt_compress.c \
	$(UPPDIR1)plugin/zstd/lib/allocations.h \
	$(UPPDIR1)plugin/zstd/lib/bits.h \
	$(UPPDIR1)plugin/zstd/lib/compiler.h \
	$(UPPDIR1)plugin/zstd/lib/cpu.h \
	$(UPPDIR1)plugin/zstd/lib/debug.h \
	$(UPPDIR1)plugin/zstd/lib/error_private.h \
	$(UPPDIR1)plugin/zstd/lib/fse.h \
	$(UPPDIR1)plugin/zstd/lib/huf.h \
	$(UPPDIR1)plugin/zstd/lib/mem.h \
	$(UPPDIR1)plugin/zstd/lib/pool.h \
	$(UPPDIR1)plugin/zstd/lib/portability_macros.h \
	$(UPPDIR1)plugin/zstd/lib/threading.h \
	$(UPPDIR1)plugin/zstd/lib/xxhash.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_compress_internal.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_cwksp.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_deps.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_errors.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_internal.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_ldm.h \
	$(UPPDIR1)plugin/zstd/lib/zstdmt_compress.c \
	$(UPPDIR1)plugin/zstd/lib/zstdmt_compress.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/zstdmt_compress.c -o $(OutDir_plugin_zstd)zstdmt_compress.o

$(OutDir_plugin_zstd)zstd_lazy.o: $(UPPDIR1)plugin/zstd/lib/zstd_lazy.c \
	$(UPPDIR1)plugin/zstd/lib/allocations.h \
	$(UPPDIR1)plugin/zstd/lib/bits.h \
	$(UPPDIR1)plugin/zstd/lib/compiler.h \
	$(UPPDIR1)plugin/zstd/lib/cpu.h \
	$(UPPDIR1)plugin/zstd/lib/debug.h \
	$(UPPDIR1)plugin/zstd/lib/error_private.h \
	$(UPPDIR1)plugin/zstd/lib/fse.h \
	$(UPPDIR1)plugin/zstd/lib/huf.h \
	$(UPPDIR1)plugin/zstd/lib/mem.h \
	$(UPPDIR1)plugin/zstd/lib/portability_macros.h \
	$(UPPDIR1)plugin/zstd/lib/xxhash.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_compress_internal.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_cwksp.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_deps.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_errors.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_internal.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_lazy.c \
	$(UPPDIR1)plugin/zstd/lib/zstd_lazy.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/zstd_lazy.c -o $(OutDir_plugin_zstd)zstd_lazy.o

$(OutDir_plugin_zstd)zstd_ldm.o: $(UPPDIR1)plugin/zstd/lib/zstd_ldm.c \
	$(UPPDIR1)plugin/zstd/lib/allocations.h \
	$(UPPDIR1)plugin/zstd/lib/bits.h \
	$(UPPDIR1)plugin/zstd/lib/compiler.h \
	$(UPPDIR1)plugin/zstd/lib/cpu.h \
	$(UPPDIR1)plugin/zstd/lib/debug.h \
	$(UPPDIR1)plugin/zstd/lib/error_private.h \
	$(UPPDIR1)plugin/zstd/lib/fse.h \
	$(UPPDIR1)plugin/zstd/lib/huf.h \
	$(UPPDIR1)plugin/zstd/lib/mem.h \
	$(UPPDIR1)plugin/zstd/lib/portability_macros.h \
	$(UPPDIR1)plugin/zstd/lib/xxhash.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_compress_internal.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_cwksp.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_deps.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_double_fast.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_errors.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_fast.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_internal.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_ldm.c \
	$(UPPDIR1)plugin/zstd/lib/zstd_ldm.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_ldm_geartab.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/zstd_ldm.c -o $(OutDir_plugin_zstd)zstd_ldm.o

$(OutDir_plugin_zstd)zstd_fast.o: $(UPPDIR1)plugin/zstd/lib/zstd_fast.c \
	$(UPPDIR1)plugin/zstd/lib/allocations.h \
	$(UPPDIR1)plugin/zstd/lib/bits.h \
	$(UPPDIR1)plugin/zstd/lib/compiler.h \
	$(UPPDIR1)plugin/zstd/lib/cpu.h \
	$(UPPDIR1)plugin/zstd/lib/debug.h \
	$(UPPDIR1)plugin/zstd/lib/error_private.h \
	$(UPPDIR1)plugin/zstd/lib/fse.h \
	$(UPPDIR1)plugin/zstd/lib/huf.h \
	$(UPPDIR1)plugin/zstd/lib/mem.h \
	$(UPPDIR1)plugin/zstd/lib/portability_macros.h \
	$(UPPDIR1)plugin/zstd/lib/xxhash.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_compress_internal.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_cwksp.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_deps.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_errors.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_fast.c \
	$(UPPDIR1)plugin/zstd/lib/zstd_fast.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_internal.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/zstd_fast.c -o $(OutDir_plugin_zstd)zstd_fast.o

$(OutDir_plugin_zstd)error_private.o: $(UPPDIR1)plugin/zstd/lib/error_private.c \
	$(UPPDIR1)plugin/zstd/lib/compiler.h \
	$(UPPDIR1)plugin/zstd/lib/debug.h \
	$(UPPDIR1)plugin/zstd/lib/error_private.c \
	$(UPPDIR1)plugin/zstd/lib/error_private.h \
	$(UPPDIR1)plugin/zstd/lib/portability_macros.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_deps.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_errors.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/error_private.c -o $(OutDir_plugin_zstd)error_private.o

$(OutDir_plugin_zstd)hist.o: $(UPPDIR1)plugin/zstd/lib/hist.c \
	$(UPPDIR1)plugin/zstd/lib/compiler.h \
	$(UPPDIR1)plugin/zstd/lib/debug.h \
	$(UPPDIR1)plugin/zstd/lib/error_private.h \
	$(UPPDIR1)plugin/zstd/lib/hist.c \
	$(UPPDIR1)plugin/zstd/lib/hist.h \
	$(UPPDIR1)plugin/zstd/lib/mem.h \
	$(UPPDIR1)plugin/zstd/lib/portability_macros.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_deps.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_errors.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/hist.c -o $(OutDir_plugin_zstd)hist.o

$(OutDir_plugin_zstd)pool.o: $(UPPDIR1)plugin/zstd/lib/pool.c \
	$(UPPDIR1)plugin/zstd/lib/allocations.h \
	$(UPPDIR1)plugin/zstd/lib/compiler.h \
	$(UPPDIR1)plugin/zstd/lib/debug.h \
	$(UPPDIR1)plugin/zstd/lib/pool.c \
	$(UPPDIR1)plugin/zstd/lib/pool.h \
	$(UPPDIR1)plugin/zstd/lib/portability_macros.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_deps.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/pool.c -o $(OutDir_plugin_zstd)pool.o

$(OutDir_plugin_zstd)zstd_double_fast.o: $(UPPDIR1)plugin/zstd/lib/zstd_double_fast.c \
	$(UPPDIR1)plugin/zstd/lib/allocations.h \
	$(UPPDIR1)plugin/zstd/lib/bits.h \
	$(UPPDIR1)plugin/zstd/lib/compiler.h \
	$(UPPDIR1)plugin/zstd/lib/cpu.h \
	$(UPPDIR1)plugin/zstd/lib/debug.h \
	$(UPPDIR1)plugin/zstd/lib/error_private.h \
	$(UPPDIR1)plugin/zstd/lib/fse.h \
	$(UPPDIR1)plugin/zstd/lib/huf.h \
	$(UPPDIR1)plugin/zstd/lib/mem.h \
	$(UPPDIR1)plugin/zstd/lib/portability_macros.h \
	$(UPPDIR1)plugin/zstd/lib/xxhash.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_compress_internal.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_cwksp.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_deps.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_double_fast.c \
	$(UPPDIR1)plugin/zstd/lib/zstd_double_fast.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_errors.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_internal.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/zstd_double_fast.c -o $(OutDir_plugin_zstd)zstd_double_fast.o

$(OutDir_plugin_zstd)zstd_compress_superblock.o: $(UPPDIR1)plugin/zstd/lib/zstd_compress_superblock.c \
	$(UPPDIR1)plugin/zstd/lib/allocations.h \
	$(UPPDIR1)plugin/zstd/lib/bits.h \
	$(UPPDIR1)plugin/zstd/lib/compiler.h \
	$(UPPDIR1)plugin/zstd/lib/cpu.h \
	$(UPPDIR1)plugin/zstd/lib/debug.h \
	$(UPPDIR1)plugin/zstd/lib/error_private.h \
	$(UPPDIR1)plugin/zstd/lib/fse.h \
	$(UPPDIR1)plugin/zstd/lib/hist.h \
	$(UPPDIR1)plugin/zstd/lib/huf.h \
	$(UPPDIR1)plugin/zstd/lib/mem.h \
	$(UPPDIR1)plugin/zstd/lib/portability_macros.h \
	$(UPPDIR1)plugin/zstd/lib/xxhash.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_compress_internal.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_compress_literals.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_compress_sequences.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_compress_superblock.c \
	$(UPPDIR1)plugin/zstd/lib/zstd_compress_superblock.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_cwksp.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_deps.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_errors.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_internal.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/zstd_compress_superblock.c -o $(OutDir_plugin_zstd)zstd_compress_superblock.o

$(OutDir_plugin_zstd)zstd_compress_sequences.o: $(UPPDIR1)plugin/zstd/lib/zstd_compress_sequences.c \
	$(UPPDIR1)plugin/zstd/lib/compiler.h \
	$(UPPDIR1)plugin/zstd/lib/cpu.h \
	$(UPPDIR1)plugin/zstd/lib/debug.h \
	$(UPPDIR1)plugin/zstd/lib/error_private.h \
	$(UPPDIR1)plugin/zstd/lib/fse.h \
	$(UPPDIR1)plugin/zstd/lib/huf.h \
	$(UPPDIR1)plugin/zstd/lib/mem.h \
	$(UPPDIR1)plugin/zstd/lib/portability_macros.h \
	$(UPPDIR1)plugin/zstd/lib/xxhash.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_compress_sequences.c \
	$(UPPDIR1)plugin/zstd/lib/zstd_compress_sequences.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_deps.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_errors.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_internal.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/zstd_compress_sequences.c -o $(OutDir_plugin_zstd)zstd_compress_sequences.o

$(OutDir_plugin_zstd)zstd_compress_literals.o: $(UPPDIR1)plugin/zstd/lib/zstd_compress_literals.c \
	$(UPPDIR1)plugin/zstd/lib/allocations.h \
	$(UPPDIR1)plugin/zstd/lib/bits.h \
	$(UPPDIR1)plugin/zstd/lib/compiler.h \
	$(UPPDIR1)plugin/zstd/lib/cpu.h \
	$(UPPDIR1)plugin/zstd/lib/debug.h \
	$(UPPDIR1)plugin/zstd/lib/error_private.h \
	$(UPPDIR1)plugin/zstd/lib/fse.h \
	$(UPPDIR1)plugin/zstd/lib/huf.h \
	$(UPPDIR1)plugin/zstd/lib/mem.h \
	$(UPPDIR1)plugin/zstd/lib/portability_macros.h \
	$(UPPDIR1)plugin/zstd/lib/xxhash.h \
	$(UPPDIR1)plugin/zstd/lib/zstd.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_compress_internal.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_compress_literals.c \
	$(UPPDIR1)plugin/zstd/lib/zstd_compress_literals.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_cwksp.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_deps.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_errors.h \
	$(UPPDIR1)plugin/zstd/lib/zstd_internal.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/zstd_compress_literals.c -o $(OutDir_plugin_zstd)zstd_compress_literals.o

$(OutDir_plugin_zstd)xxhash.o: $(UPPDIR1)plugin/zstd/lib/xxhash.c \
	$(UPPDIR1)plugin/zstd/lib/xxhash.c \
	$(UPPDIR1)plugin/zstd/lib/xxhash.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_zstd)  $(UPPDIR1)plugin/zstd/lib/xxhash.c -o $(OutDir_plugin_zstd)xxhash.o

$(OutDir_plugin_zstd)zstd.a: \
	$(OutDir_plugin_zstd)Compress.o \
	$(OutDir_plugin_zstd)Decompress.o \
	$(OutDir_plugin_zstd)Util.o \
	$(OutDir_plugin_zstd)huf_decompress.o \
	$(OutDir_plugin_zstd)zstd_ddict.o \
	$(OutDir_plugin_zstd)zstd_decompress.o \
	$(OutDir_plugin_zstd)zstd_decompress_block.o \
	$(OutDir_plugin_zstd)entropy_common.o \
	$(OutDir_plugin_zstd)fse_compress.o \
	$(OutDir_plugin_zstd)fse_decompress.o \
	$(OutDir_plugin_zstd)huf_compress.o \
	$(OutDir_plugin_zstd)zstd_common.o \
	$(OutDir_plugin_zstd)zstd_compress.o \
	$(OutDir_plugin_zstd)zstd_opt.o \
	$(OutDir_plugin_zstd)zstdmt_compress.o \
	$(OutDir_plugin_zstd)zstd_lazy.o \
	$(OutDir_plugin_zstd)zstd_ldm.o \
	$(OutDir_plugin_zstd)zstd_fast.o \
	$(OutDir_plugin_zstd)error_private.o \
	$(OutDir_plugin_zstd)hist.o \
	$(OutDir_plugin_zstd)pool.o \
	$(OutDir_plugin_zstd)zstd_double_fast.o \
	$(OutDir_plugin_zstd)zstd_compress_superblock.o \
	$(OutDir_plugin_zstd)zstd_compress_sequences.o \
	$(OutDir_plugin_zstd)zstd_compress_literals.o \
	$(OutDir_plugin_zstd)xxhash.o
	$(AR) $(OutDir_plugin_zstd)zstd.a \
		$(OutDir_plugin_zstd)Compress.o \
		$(OutDir_plugin_zstd)Decompress.o \
		$(OutDir_plugin_zstd)Util.o \
		$(OutDir_plugin_zstd)huf_decompress.o \
		$(OutDir_plugin_zstd)zstd_ddict.o \
		$(OutDir_plugin_zstd)zstd_decompress.o \
		$(OutDir_plugin_zstd)zstd_decompress_block.o \
		$(OutDir_plugin_zstd)entropy_common.o \
		$(OutDir_plugin_zstd)fse_compress.o \
		$(OutDir_plugin_zstd)fse_decompress.o \
		$(OutDir_plugin_zstd)huf_compress.o \
		$(OutDir_plugin_zstd)zstd_common.o \
		$(OutDir_plugin_zstd)zstd_compress.o \
		$(OutDir_plugin_zstd)zstd_opt.o \
		$(OutDir_plugin_zstd)zstdmt_compress.o \
		$(OutDir_plugin_zstd)zstd_lazy.o \
		$(OutDir_plugin_zstd)zstd_ldm.o \
		$(OutDir_plugin_zstd)zstd_fast.o \
		$(OutDir_plugin_zstd)error_private.o \
		$(OutDir_plugin_zstd)hist.o \
		$(OutDir_plugin_zstd)pool.o \
		$(OutDir_plugin_zstd)zstd_double_fast.o \
		$(OutDir_plugin_zstd)zstd_compress_superblock.o \
		$(OutDir_plugin_zstd)zstd_compress_sequences.o \
		$(OutDir_plugin_zstd)zstd_compress_literals.o \
		$(OutDir_plugin_zstd)xxhash.o

$(OutDir_Core):
	mkdir -p $(OutDir_Core)

$(OutDir_Core)Cpu.o: $(UPPDIR1)Core/Cpu.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Cpu.cpp \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Cpu.cpp -o $(OutDir_Core)Cpu.o

$(OutDir_Core)Mem.o: $(UPPDIR1)Core/Mem.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.cpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Mem.cpp -o $(OutDir_Core)Mem.o

$(OutDir_Core)SIMD.o: $(UPPDIR1)Core/SIMD.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/SIMD.cpp \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/SIMD.cpp -o $(OutDir_Core)SIMD.o

$(OutDir_Core)Mt.o: $(UPPDIR1)Core/Mt.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.cpp \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Mt.cpp -o $(OutDir_Core)Mt.o

$(OutDir_Core)heaputil.o: $(UPPDIR1)Core/heaputil.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/heaputil.cpp \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/heaputil.cpp -o $(OutDir_Core)heaputil.o

$(OutDir_Core)hheap.o: $(UPPDIR1)Core/hheap.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/hheap.cpp \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/hheap.cpp -o $(OutDir_Core)hheap.o

$(OutDir_Core)sheap.o: $(UPPDIR1)Core/sheap.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/sheap.cpp \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/sheap.cpp -o $(OutDir_Core)sheap.o

$(OutDir_Core)lheap.o: $(UPPDIR1)Core/lheap.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lheap.cpp \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/lheap.cpp -o $(OutDir_Core)lheap.o

$(OutDir_Core)heap.o: $(UPPDIR1)Core/heap.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/heap.cpp \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/heap.cpp -o $(OutDir_Core)heap.o

$(OutDir_Core)heapdbg.o: $(UPPDIR1)Core/heapdbg.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/heapdbg.cpp \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/heapdbg.cpp -o $(OutDir_Core)heapdbg.o

$(OutDir_Core)StringFind.o: $(UPPDIR1)Core/StringFind.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/StringFind.cpp \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/StringFind.cpp -o $(OutDir_Core)StringFind.o

$(OutDir_Core)String.o: $(UPPDIR1)Core/String.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.cpp \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/String.cpp -o $(OutDir_Core)String.o

$(OutDir_Core)WString.o: $(UPPDIR1)Core/WString.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/WString.cpp \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/WString.cpp -o $(OutDir_Core)WString.o

$(OutDir_Core)StrUtil.o: $(UPPDIR1)Core/StrUtil.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/StrUtil.cpp \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/StrUtil.cpp -o $(OutDir_Core)StrUtil.o

$(OutDir_Core)SplitMerge.o: $(UPPDIR1)Core/SplitMerge.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.cpp \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/SplitMerge.cpp -o $(OutDir_Core)SplitMerge.o

$(OutDir_Core)Utf.o: $(UPPDIR1)Core/Utf.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.cpp \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Utf.cpp -o $(OutDir_Core)Utf.o

$(OutDir_Core)UnicodeInfo.o: $(UPPDIR1)Core/UnicodeInfo.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/UnicodeInfo.cpp \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/UnicodeInfo.cpp -o $(OutDir_Core)UnicodeInfo.o

$(OutDir_Core)CharSet.o: $(UPPDIR1)Core/CharSet.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.cpp \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/CharSet.cpp -o $(OutDir_Core)CharSet.o

$(OutDir_Core)Bom.o: $(UPPDIR1)Core/Bom.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Bom.cpp \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Bom.cpp -o $(OutDir_Core)Bom.o

$(OutDir_Core)Path.o: $(UPPDIR1)Core/Path.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.cpp \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Path.cpp -o $(OutDir_Core)Path.o

$(OutDir_Core)NetNode.o: $(UPPDIR1)Core/NetNode.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/NetNode.cpp \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/NetNode.cpp -o $(OutDir_Core)NetNode.o

$(OutDir_Core)App.o: $(UPPDIR1)Core/App.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.cpp \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/App.cpp -o $(OutDir_Core)App.o

$(OutDir_Core)Huge.o: $(UPPDIR1)Core/Huge.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.cpp \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Huge.cpp -o $(OutDir_Core)Huge.o

$(OutDir_Core)Stream.o: $(UPPDIR1)Core/Stream.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.cpp \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Stream.cpp -o $(OutDir_Core)Stream.o

$(OutDir_Core)BlockStream.o: $(UPPDIR1)Core/BlockStream.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/BlockStream.cpp \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/BlockStream.cpp -o $(OutDir_Core)BlockStream.o

$(OutDir_Core)FilterStream.o: $(UPPDIR1)Core/FilterStream.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.cpp \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/FilterStream.cpp -o $(OutDir_Core)FilterStream.o

$(OutDir_Core)FileMapping.o: $(UPPDIR1)Core/FileMapping.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.cpp \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/FileMapping.cpp -o $(OutDir_Core)FileMapping.o

$(OutDir_Core)Log.o: $(UPPDIR1)Core/Log.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Log.cpp \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Log.cpp -o $(OutDir_Core)Log.o

$(OutDir_Core)Debug.o: $(UPPDIR1)Core/Debug.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Debug.cpp \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Debug.cpp -o $(OutDir_Core)Debug.o

$(OutDir_Core)Ini.o: $(UPPDIR1)Core/Ini.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/Ini.cpp \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Ini.cpp -o $(OutDir_Core)Ini.o

$(OutDir_Core)Util.o: $(UPPDIR1)Core/Util.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.cpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Util.cpp -o $(OutDir_Core)Util.o

$(OutDir_Core)mathutil.o: $(UPPDIR1)Core/mathutil.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/mathutil.cpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/mathutil.cpp -o $(OutDir_Core)mathutil.o

$(OutDir_Core)Random.o: $(UPPDIR1)Core/Random.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Random.cpp \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Random.cpp -o $(OutDir_Core)Random.o

$(OutDir_Core)Speller.o: $(UPPDIR1)Core/Speller.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/Speller.cpp \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Speller.cpp -o $(OutDir_Core)Speller.o

$(OutDir_Core)LocalProcess.o: $(UPPDIR1)Core/LocalProcess.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.cpp \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/LocalProcess.cpp -o $(OutDir_Core)LocalProcess.o

$(OutDir_Core)PackedData.o: $(UPPDIR1)Core/PackedData.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/PackedData.cpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/PackedData.cpp -o $(OutDir_Core)PackedData.o

$(OutDir_Core)Vcont.o: $(UPPDIR1)Core/Vcont.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.cpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Vcont.cpp -o $(OutDir_Core)Vcont.o

$(OutDir_Core)Index.o: $(UPPDIR1)Core/Index.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.cpp \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Index.cpp -o $(OutDir_Core)Index.o

$(OutDir_Core)TimeDate.o: $(UPPDIR1)Core/TimeDate.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.cpp \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/TimeDate.cpp -o $(OutDir_Core)TimeDate.o

$(OutDir_Core)Value.o: $(UPPDIR1)Core/Value.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.cpp \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Value.cpp -o $(OutDir_Core)Value.o

$(OutDir_Core)ValueUtil.o: $(UPPDIR1)Core/ValueUtil.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.cpp \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/ValueUtil.cpp -o $(OutDir_Core)ValueUtil.o

$(OutDir_Core)Format.o: $(UPPDIR1)Core/Format.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.cpp \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Format.cpp -o $(OutDir_Core)Format.o

$(OutDir_Core)CvFlt.o: $(UPPDIR1)Core/CvFlt.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/CvFlt.cpp \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/ipow10.i \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/CvFlt.cpp -o $(OutDir_Core)CvFlt.o

$(OutDir_Core)Convert.o: $(UPPDIR1)Core/Convert.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.cpp \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Convert.cpp -o $(OutDir_Core)Convert.o

$(OutDir_Core)Color.o: $(UPPDIR1)Core/Color.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.cpp \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Color.cpp -o $(OutDir_Core)Color.o

$(OutDir_Core)Gtypes.o: $(UPPDIR1)Core/Gtypes.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.cpp \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Gtypes.cpp -o $(OutDir_Core)Gtypes.o

$(OutDir_Core)t.o: $(UPPDIR1)Core/t.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t.cpp \
	$(UPPDIR1)Core/t.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/t.cpp -o $(OutDir_Core)t.o

$(OutDir_Core)Lang.o: $(UPPDIR1)Core/Lang.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.cpp \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Lang.cpp -o $(OutDir_Core)Lang.o

$(OutDir_Core)LangInfo.o: $(UPPDIR1)Core/LangInfo.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LangInfo.cpp \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/LangInfo.cpp -o $(OutDir_Core)LangInfo.o

$(OutDir_Core)parser.o: $(UPPDIR1)Core/parser.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/parser.cpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/parser.cpp -o $(OutDir_Core)parser.o

$(OutDir_Core)XML.o: $(UPPDIR1)Core/XML.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.cpp \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/XML.cpp -o $(OutDir_Core)XML.o

$(OutDir_Core)Xmlize.o: $(UPPDIR1)Core/Xmlize.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.cpp \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Xmlize.cpp -o $(OutDir_Core)Xmlize.o

$(OutDir_Core)JSON.o: $(UPPDIR1)Core/JSON.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.cpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/JSON.cpp -o $(OutDir_Core)JSON.o

$(OutDir_Core)Uuid.o: $(UPPDIR1)Core/Uuid.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.cpp \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Uuid.cpp -o $(OutDir_Core)Uuid.o

$(OutDir_Core)Ptr.o: $(UPPDIR1)Core/Ptr.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.cpp \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Ptr.cpp -o $(OutDir_Core)Ptr.o

$(OutDir_Core)z.o: $(UPPDIR1)Core/z.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/lz4.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.cpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/z.cpp -o $(OutDir_Core)z.o

$(OutDir_Core)lz4.o: $(UPPDIR1)Core/lib/lz4.c \
	$(UPPDIR1)Core/lib/lz4.c
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/lib/lz4.c -o $(OutDir_Core)lz4.o

$(OutDir_Core)Topic.o: $(UPPDIR1)Core/Topic.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.cpp \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Topic.cpp -o $(OutDir_Core)Topic.o

$(OutDir_Core)CoWork.o: $(UPPDIR1)Core/CoWork.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.cpp \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/CoWork.cpp -o $(OutDir_Core)CoWork.o

$(OutDir_Core)ValueCache.o: $(UPPDIR1)Core/ValueCache.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.cpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/ValueCache.cpp -o $(OutDir_Core)ValueCache.o

$(OutDir_Core)MD5.o: $(UPPDIR1)Core/MD5.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/MD5.cpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/MD5.cpp -o $(OutDir_Core)MD5.o

$(OutDir_Core)SHA1.o: $(UPPDIR1)Core/SHA1.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/SHA1.cpp \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/SHA1.cpp -o $(OutDir_Core)SHA1.o

$(OutDir_Core)SHA256.o: $(UPPDIR1)Core/SHA256.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/SHA256.cpp \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/SHA256.cpp -o $(OutDir_Core)SHA256.o

$(OutDir_Core)xxhash.o: $(UPPDIR1)Core/lib/xxhash.c \
	$(UPPDIR1)Core/lib/xxhash.c \
	$(UPPDIR1)Core/lib/xxhash.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/lib/xxhash.c -o $(OutDir_Core)xxhash.o

$(OutDir_Core)xxHsh.o: $(UPPDIR1)Core/xxHsh.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/lib/xxhash.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/xxHsh.cpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/xxHsh.cpp -o $(OutDir_Core)xxHsh.o

$(OutDir_Core)InetUtil.o: $(UPPDIR1)Core/InetUtil.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InetUtil.cpp \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/InetUtil.cpp -o $(OutDir_Core)InetUtil.o

$(OutDir_Core)MIME.o: $(UPPDIR1)Core/MIME.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/MIME.cpp \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/MIME.cpp -o $(OutDir_Core)MIME.o

$(OutDir_Core)Socket.o: $(UPPDIR1)Core/Socket.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Socket.cpp \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Socket.cpp -o $(OutDir_Core)Socket.o

$(OutDir_Core)Http.o: $(UPPDIR1)Core/Http.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/Http.cpp \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Http.cpp -o $(OutDir_Core)Http.o

$(OutDir_Core)WebSocket.o: $(UPPDIR1)Core/WebSocket.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/WebSocket.cpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/WebSocket.cpp -o $(OutDir_Core)WebSocket.o

$(OutDir_Core)Dli.o: $(UPPDIR1)Core/Dli.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/Dli.cpp \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Dli.cpp -o $(OutDir_Core)Dli.o

$(OutDir_Core)Win32Util.o: $(UPPDIR1)Core/Win32Util.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.cpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_Core)  $(UPPDIR1)Core/Win32Util.cpp -o $(OutDir_Core)Win32Util.o

$(OutDir_Core)Core.a: \
	$(OutDir_Core)Cpu.o \
	$(OutDir_Core)Mem.o \
	$(OutDir_Core)SIMD.o \
	$(OutDir_Core)Mt.o \
	$(OutDir_Core)heaputil.o \
	$(OutDir_Core)hheap.o \
	$(OutDir_Core)sheap.o \
	$(OutDir_Core)lheap.o \
	$(OutDir_Core)heap.o \
	$(OutDir_Core)heapdbg.o \
	$(OutDir_Core)StringFind.o \
	$(OutDir_Core)String.o \
	$(OutDir_Core)WString.o \
	$(OutDir_Core)StrUtil.o \
	$(OutDir_Core)SplitMerge.o \
	$(OutDir_Core)Utf.o \
	$(OutDir_Core)UnicodeInfo.o \
	$(OutDir_Core)CharSet.o \
	$(OutDir_Core)Bom.o \
	$(OutDir_Core)Path.o \
	$(OutDir_Core)NetNode.o \
	$(OutDir_Core)App.o \
	$(OutDir_Core)Huge.o \
	$(OutDir_Core)Stream.o \
	$(OutDir_Core)BlockStream.o \
	$(OutDir_Core)FilterStream.o \
	$(OutDir_Core)FileMapping.o \
	$(OutDir_Core)Log.o \
	$(OutDir_Core)Debug.o \
	$(OutDir_Core)Ini.o \
	$(OutDir_Core)Util.o \
	$(OutDir_Core)mathutil.o \
	$(OutDir_Core)Random.o \
	$(OutDir_Core)Speller.o \
	$(OutDir_Core)LocalProcess.o \
	$(OutDir_Core)PackedData.o \
	$(OutDir_Core)Vcont.o \
	$(OutDir_Core)Index.o \
	$(OutDir_Core)TimeDate.o \
	$(OutDir_Core)Value.o \
	$(OutDir_Core)ValueUtil.o \
	$(OutDir_Core)Format.o \
	$(OutDir_Core)CvFlt.o \
	$(OutDir_Core)Convert.o \
	$(OutDir_Core)Color.o \
	$(OutDir_Core)Gtypes.o \
	$(OutDir_Core)t.o \
	$(OutDir_Core)Lang.o \
	$(OutDir_Core)LangInfo.o \
	$(OutDir_Core)parser.o \
	$(OutDir_Core)XML.o \
	$(OutDir_Core)Xmlize.o \
	$(OutDir_Core)JSON.o \
	$(OutDir_Core)Uuid.o \
	$(OutDir_Core)Ptr.o \
	$(OutDir_Core)z.o \
	$(OutDir_Core)lz4.o \
	$(OutDir_Core)Topic.o \
	$(OutDir_Core)CoWork.o \
	$(OutDir_Core)ValueCache.o \
	$(OutDir_Core)MD5.o \
	$(OutDir_Core)SHA1.o \
	$(OutDir_Core)SHA256.o \
	$(OutDir_Core)xxhash.o \
	$(OutDir_Core)xxHsh.o \
	$(OutDir_Core)InetUtil.o \
	$(OutDir_Core)MIME.o \
	$(OutDir_Core)Socket.o \
	$(OutDir_Core)Http.o \
	$(OutDir_Core)WebSocket.o \
	$(OutDir_Core)Dli.o \
	$(OutDir_Core)Win32Util.o
	$(AR) $(OutDir_Core)Core.a \
		$(OutDir_Core)Cpu.o \
		$(OutDir_Core)Mem.o \
		$(OutDir_Core)SIMD.o \
		$(OutDir_Core)Mt.o \
		$(OutDir_Core)heaputil.o \
		$(OutDir_Core)hheap.o \
		$(OutDir_Core)sheap.o \
		$(OutDir_Core)lheap.o \
		$(OutDir_Core)heap.o \
		$(OutDir_Core)heapdbg.o \
		$(OutDir_Core)StringFind.o \
		$(OutDir_Core)String.o \
		$(OutDir_Core)WString.o \
		$(OutDir_Core)StrUtil.o \
		$(OutDir_Core)SplitMerge.o \
		$(OutDir_Core)Utf.o \
		$(OutDir_Core)UnicodeInfo.o \
		$(OutDir_Core)CharSet.o \
		$(OutDir_Core)Bom.o \
		$(OutDir_Core)Path.o \
		$(OutDir_Core)NetNode.o \
		$(OutDir_Core)App.o \
		$(OutDir_Core)Huge.o \
		$(OutDir_Core)Stream.o \
		$(OutDir_Core)BlockStream.o \
		$(OutDir_Core)FilterStream.o \
		$(OutDir_Core)FileMapping.o \
		$(OutDir_Core)Log.o \
		$(OutDir_Core)Debug.o \
		$(OutDir_Core)Ini.o \
		$(OutDir_Core)Util.o \
		$(OutDir_Core)mathutil.o \
		$(OutDir_Core)Random.o \
		$(OutDir_Core)Speller.o \
		$(OutDir_Core)LocalProcess.o \
		$(OutDir_Core)PackedData.o \
		$(OutDir_Core)Vcont.o \
		$(OutDir_Core)Index.o \
		$(OutDir_Core)TimeDate.o \
		$(OutDir_Core)Value.o \
		$(OutDir_Core)ValueUtil.o \
		$(OutDir_Core)Format.o \
		$(OutDir_Core)CvFlt.o \
		$(OutDir_Core)Convert.o \
		$(OutDir_Core)Color.o \
		$(OutDir_Core)Gtypes.o \
		$(OutDir_Core)t.o \
		$(OutDir_Core)Lang.o \
		$(OutDir_Core)LangInfo.o \
		$(OutDir_Core)parser.o \
		$(OutDir_Core)XML.o \
		$(OutDir_Core)Xmlize.o \
		$(OutDir_Core)JSON.o \
		$(OutDir_Core)Uuid.o \
		$(OutDir_Core)Ptr.o \
		$(OutDir_Core)z.o \
		$(OutDir_Core)lz4.o \
		$(OutDir_Core)Topic.o \
		$(OutDir_Core)CoWork.o \
		$(OutDir_Core)ValueCache.o \
		$(OutDir_Core)MD5.o \
		$(OutDir_Core)SHA1.o \
		$(OutDir_Core)SHA256.o \
		$(OutDir_Core)xxhash.o \
		$(OutDir_Core)xxHsh.o \
		$(OutDir_Core)InetUtil.o \
		$(OutDir_Core)MIME.o \
		$(OutDir_Core)Socket.o \
		$(OutDir_Core)Http.o \
		$(OutDir_Core)WebSocket.o \
		$(OutDir_Core)Dli.o \
		$(OutDir_Core)Win32Util.o

$(OutDir_plugin_pcre):
	mkdir -p $(OutDir_plugin_pcre)

$(OutDir_plugin_pcre)RegExp.o: $(UPPDIR1)plugin/pcre/RegExp.cpp \
	$(UPPDIR1)Core/Algo.h \
	$(UPPDIR1)Core/App.h \
	$(UPPDIR1)Core/AString.hpp \
	$(UPPDIR1)Core/Atomic.h \
	$(UPPDIR1)Core/BiCont.h \
	$(UPPDIR1)Core/Callback.h \
	$(UPPDIR1)Core/CallbackN.i \
	$(UPPDIR1)Core/CallbackNP.i \
	$(UPPDIR1)Core/CallbackR.i \
	$(UPPDIR1)Core/CharSet.h \
	$(UPPDIR1)Core/CharSet.i \
	$(UPPDIR1)Core/CoAlgo.h \
	$(UPPDIR1)Core/Color.h \
	$(UPPDIR1)Core/Complex.h \
	$(UPPDIR1)Core/config.h \
	$(UPPDIR1)Core/Convert.h \
	$(UPPDIR1)Core/Convert.hpp \
	$(UPPDIR1)Core/Core.h \
	$(UPPDIR1)Core/CoSort.h \
	$(UPPDIR1)Core/CoWork.h \
	$(UPPDIR1)Core/Defs.h \
	$(UPPDIR1)Core/Diag.h \
	$(UPPDIR1)Core/FileMapping.h \
	$(UPPDIR1)Core/FilterStream.h \
	$(UPPDIR1)Core/FixedMap.h \
	$(UPPDIR1)Core/Fn.h \
	$(UPPDIR1)Core/Format.h \
	$(UPPDIR1)Core/Function.h \
	$(UPPDIR1)Core/Gtypes.h \
	$(UPPDIR1)Core/Hash.h \
	$(UPPDIR1)Core/Heap.h \
	$(UPPDIR1)Core/HttpStatusCode.i \
	$(UPPDIR1)Core/Huge.h \
	$(UPPDIR1)Core/i18n.h \
	$(UPPDIR1)Core/Index.h \
	$(UPPDIR1)Core/Index.hpp \
	$(UPPDIR1)Core/Inet.h \
	$(UPPDIR1)Core/InMap.hpp \
	$(UPPDIR1)Core/InVector.h \
	$(UPPDIR1)Core/InVector.hpp \
	$(UPPDIR1)Core/JSON.h \
	$(UPPDIR1)Core/Lang.h \
	$(UPPDIR1)Core/Lang_s.h \
	$(UPPDIR1)Core/LocalProcess.h \
	$(UPPDIR1)Core/Map.h \
	$(UPPDIR1)Core/Map.hpp \
	$(UPPDIR1)Core/Mem.h \
	$(UPPDIR1)Core/Mt.h \
	$(UPPDIR1)Core/Obsolete.h \
	$(UPPDIR1)Core/Ops.h \
	$(UPPDIR1)Core/Other.h \
	$(UPPDIR1)Core/Other.hpp \
	$(UPPDIR1)Core/Parser.h \
	$(UPPDIR1)Core/Path.h \
	$(UPPDIR1)Core/Profile.h \
	$(UPPDIR1)Core/Ptr.h \
	$(UPPDIR1)Core/Range.h \
	$(UPPDIR1)Core/Sort.h \
	$(UPPDIR1)Core/Sorted.h \
	$(UPPDIR1)Core/SplitMerge.h \
	$(UPPDIR1)Core/Stream.h \
	$(UPPDIR1)Core/String.h \
	$(UPPDIR1)Core/t_.h \
	$(UPPDIR1)Core/TimeDate.h \
	$(UPPDIR1)Core/Topic.h \
	$(UPPDIR1)Core/Topt.h \
	$(UPPDIR1)Core/Tuple.h \
	$(UPPDIR1)Core/Utf.hpp \
	$(UPPDIR1)Core/Util.h \
	$(UPPDIR1)Core/Uuid.h \
	$(UPPDIR1)Core/Value.h \
	$(UPPDIR1)Core/Value.hpp \
	$(UPPDIR1)Core/ValueCache.h \
	$(UPPDIR1)Core/ValueUtil.h \
	$(UPPDIR1)Core/ValueUtil.hpp \
	$(UPPDIR1)Core/Vcont.h \
	$(UPPDIR1)Core/Vcont.hpp \
	$(UPPDIR1)Core/Win32Util.h \
	$(UPPDIR1)Core/XML.h \
	$(UPPDIR1)Core/Xmlize.h \
	$(UPPDIR1)Core/Xmlize.hpp \
	$(UPPDIR1)Core/z.h \
	$(UPPDIR1)plugin/pcre/lib/pcre.h \
	$(UPPDIR1)plugin/pcre/Pcre.h \
	$(UPPDIR1)plugin/pcre/RegExp.cpp \
	$(UPPDIR1)plugin/pcre/RegExp.h \
	$(UPPDIR1)uppconfig.h
	$(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_plugin_pcre)  $(UPPDIR1)plugin/pcre/RegExp.cpp -o $(OutDir_plugin_pcre)RegExp.o

$(OutDir_plugin_pcre)lib.o: $(UPPDIR1)plugin/pcre/lib.c \
	$(UPPDIR1)plugin/pcre/lib.c \
	$(UPPDIR1)plugin/pcre/lib/pcre.h \
	$(UPPDIR1)plugin/pcre/lib/pcre_byte_order.c \
	$(UPPDIR1)plugin/pcre/lib/pcre_chartables.c \
	$(UPPDIR1)plugin/pcre/lib/pcre_compile.c \
	$(UPPDIR1)plugin/pcre/lib/pcre_config.c \
	$(UPPDIR1)plugin/pcre/lib/pcre_dfa_exec.c \
	$(UPPDIR1)plugin/pcre/lib/pcre_exec.c \
	$(UPPDIR1)plugin/pcre/lib/pcre_fullinfo.c \
	$(UPPDIR1)plugin/pcre/lib/pcre_get.c \
	$(UPPDIR1)plugin/pcre/lib/pcre_globals.c \
	$(UPPDIR1)plugin/pcre/lib/pcre_internal.h \
	$(UPPDIR1)plugin/pcre/lib/pcre_jit_compile.c \
	$(UPPDIR1)plugin/pcre/lib/pcre_maketables.c \
	$(UPPDIR1)plugin/pcre/lib/pcre_newline.c \
	$(UPPDIR1)plugin/pcre/lib/pcre_ord2utf8.c \
	$(UPPDIR1)plugin/pcre/lib/pcre_refcount.c \
	$(UPPDIR1)plugin/pcre/lib/pcre_string_utils.c \
	$(UPPDIR1)plugin/pcre/lib/pcre_study.c \
	$(UPPDIR1)plugin/pcre/lib/pcre_tables.c \
	$(UPPDIR1)plugin/pcre/lib/pcre_ucd.c \
	$(UPPDIR1)plugin/pcre/lib/pcre_valid_utf8.c \
	$(UPPDIR1)plugin/pcre/lib/pcre_version.c \
	$(UPPDIR1)plugin/pcre/lib/pcre_xclass.c \
	$(UPPDIR1)plugin/pcre/lib/ucp.h
	$(CXX) -c -x c $(CFLAGS) $(CINC) $(Macro_plugin_pcre)  $(UPPDIR1)plugin/pcre/lib.c -o $(OutDir_plugin_pcre)lib.o

$(OutDir_plugin_pcre)pcre.a: \
	$(OutDir_plugin_pcre)RegExp.o \
	$(OutDir_plugin_pcre)lib.o
	$(AR) $(OutDir_plugin_pcre)pcre.a \
		$(OutDir_plugin_pcre)RegExp.o \
		$(OutDir_plugin_pcre)lib.o

.PHONY: clean
clean:
	if [ "$(UPPOUT)" != "" -a "$(UPPOUT)" != "/" -a -d "$(UPPOUT)" ] ; then rm -fr "$(UPPOUT)" ; fi
