First steps

This commit is contained in:
JusicP 2020-11-19 22:37:27 +02:00
parent 6920a3bd08
commit 3434111923
1341 changed files with 883624 additions and 46746 deletions

BIN
appframework/appframework.a Normal file

Binary file not shown.

BIN
bitmap/bitmap.a Normal file

Binary file not shown.

8
build-android32.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
# example: ./build.sh everything togl
export VALVE_NO_AUTO_P4=1
export NDK_TOOLCHAIN_VERSION=4.9
make NDK=1 NDK_ABI=x86 NDK_PATH=/mnt/f/soft/android-ndk-r10e APP_API_LEVEL=21 MAKE_VERBOSE=1 NO_CHROOT=1 -f $1.mak $2 -j$(nproc --all)

8
build-androidarm32.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
# example: ./build.sh everything togl
export VALVE_NO_AUTO_P4=1
export NDK_TOOLCHAIN_VERSION=4.9
make NDK=1 NDK_ABI=armeabi-v7a NDK_PATH=/mnt/f/soft/android-ndk-r10e APP_API_LEVEL=21 MAKE_VERBOSE=1 NO_CHROOT=1 -f $1.mak $2 -j$(nproc --all)

View File

@ -2,4 +2,6 @@
# example: ./build.sh everything togl
export VALVE_NO_AUTO_P4=1
make MAKE_VERBOSE=1 NO_CHROOT=1 -f $1.mak $2 -j$(nproc --all)

5
createallprojects-android32 Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash
pushd `dirname $0`
devtools/bin/vpc /f /hl2 +everything /mksln everything /android32
popd

5
createallprojects-androidarm32 Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash
pushd `dirname $0`
devtools/bin/vpc /f /hl2 +everything /mksln everything /androidarm32
popd

View File

@ -74,7 +74,18 @@ endif
DEFINES += -D_GLIBCXX_USE_CXX11_ABI=0
# CPPFLAGS == "c/c++ *preprocessor* flags" - not "cee-plus-plus flags"
ARCH_FLAGS =
ifeq ($(NDK),1)
ifeq ($(NDK_ABI),x86)
SYSROOT := "$(NDK_PATH)/platforms/android-$(APP_API_LEVEL)/arch-x86"
else ifeq ($(NDK_ABI),armeabi-v7a)
SYSROOT := "$(NDK_PATH)/platforms/android-$(APP_API_LEVEL)/arch-arm"
endif
SYSROOTFLAG := "--sysroot=$(SYSROOT)"
ARCH_FLAGS := $(SYSROOTFLAG) -I$(NDK_PATH)/sources/cxx-stl/stlport/stlport/ -I$(NDK_PATH)/sources/android/support/include -DANDROID
else
ARCH_FLAGS =
endif
BUILDING_MULTI_ARCH = 0
# Preserve cflags set in environment
ENV_CFLAGS := $(CFLAGS)
@ -113,87 +124,6 @@ MAP_FLAGS =
Srv_GAMEOUTPUTFILE =
COPY_DLL_TO_SRV = 0
# We should always specify -Wl,--build-id, as documented at:
# http://linux.die.net/man/1/ld and http://fedoraproject.org/wiki/Releases/FeatureBuildId.http://fedoraproject.org/wiki/Releases/FeatureBuildId
LDFLAGS += -Wl,--build-id
#
# If we should be running in a chroot, check to see if we are. If not, then prefix everything with the
# required chroot
#
ifdef MAKE_CHROOT
export STEAM_RUNTIME_PATH := /usr
ifneq ("$(SCHROOT_CHROOT_NAME)", "$(CHROOT_NAME)")
$(info '$(SCHROOT_CHROOT_NAME)' is not '$(CHROOT_NAME)')
$(error This makefile should be run from within a chroot. 'schroot --chroot $(CHROOT_NAME) -- $(MAKE) $(MAKEFLAGS)')
endif
GCC_VER = -4.8
P4BIN = $(SRCROOT)/devtools/bin/linux/p4
CRYPTOPPDIR=ubuntu12_32_gcc48
else ifeq ($(USE_VALVE_BINDIR),1)
# Using /valve/bin directory.
export STEAM_RUNTIME_PATH ?= /valve
GCC_VER = -4.6
P4BIN = $(SRCROOT)/devtools/bin/linux/p4
CRYPTOPPDIR=linux32
else
# Not using chroot, use old steam-runtime. (gcc 4.6.3)
export STEAM_RUNTIME_PATH ?= /valve/steam-runtime
GCC_VER =
P4BIN = true
CRYPTOPPDIR=ubuntu12_32
endif
ifeq ($(TARGET_PLATFORM),linux64)
MARCH_TARGET = core2
else
MARCH_TARGET = pentium4
endif
ifeq ($(USE_VALVE_BINDIR),1)
# On dedicated servers, some plugins depend on global variable symbols in addition to functions.
# So symbols like _Z16ClearMultiDamagev should show up when you do "nm server_srv.so" in TF2.
STRIP_FLAGS =
else
# Linux desktop client (or client/dedicated server in chroot).
STRIP_FLAGS = -x
endif
ifeq ($(CLANG_BUILD),1)
# Clang does not support -mfpmath=sse because it uses whatever
# instruction set extensions are available by default.
SSE_GEN_FLAGS = -msse2
else
SSE_GEN_FLAGS = -msse2 -mfpmath=sse
endif
CCACHE := $(SRCROOT)/devtools/bin/linux/ccache
# - pch_defines,time_macros,file_macro needed for precompiled headers to be beneficial. See additional ".defines" wrapper
# for PCH below to prevent this from biting us (in theory)
# - include_file_ctime/mtime causes re-generated but identical headers, like protobuf, to cause a cache miss. I couldn't
# find the justification for this setting being on by default, perhaps to not waste time preprocessing the files?
# Let's find out the painful way.
export CCACHE_SLOPPINESS := $(CCACHE_SLOPPINESS),time_macros,file_macro,include_file_ctime,include_file_mtime,pch_defines
# Needed for clang to take advantage of PCH, we include the PCH in the
# source files and clang doesn't support -fpch-preprocess properly
ifeq ($(CLANG_BUILD),1)
export CCACHE_CPP2 = 1
endif
# If not specified by environment, use steam runtime compilers + in-tree ccache
ifneq ($(filter default undefined,$(origin AR)),)
AR = ar crs
endif
ifneq ($(filter default undefined,$(origin CC)),)
CC = gcc -m32
endif
ifneq ($(filter default undefined,$(origin CXX)),)
CXX = g++ -m32
endif
LINK ?= $(CC)
ifeq ($(STEAM_BRANCH),1)
WARN_FLAGS = -Wall -Wextra -Wshadow -Wno-invalid-offsetof
else
@ -218,19 +148,117 @@ WARN_FLAGS += -Wno-unknown-pragmas -Wno-unused-parameter -Wno-unused-value
WARN_FLAGS += -Wno-invalid-offsetof -Wno-float-equal -Wno-reorder -Werror=return-type
WARN_FLAGS += -fdiagnostics-show-option -Wformat -Wformat-security
ifeq ($(TARGET_PLATFORM),linux64)
# nocona = pentium4 + 64bit + MMX, SSE, SSE2, SSE3 - no SSSE3 (that's three s's - added in core2)
ARCH_FLAGS += -march=$(MARCH_TARGET) -mtune=core2
LD_SO = ld-linux-x86_64.so.2
LIBSTDCXX := $(shell $(CXX) -print-file-name=libstdc++.a)
LIBSTDCXXPIC := $(shell $(CXX) -print-file-name=libstdc++-pic.a)
# We should always specify -Wl,--build-id, as documented at:
# http://linux.die.net/man/1/ld and http://fedoraproject.org/wiki/Releases/FeatureBuildId.http://fedoraproject.org/wiki/Releases/FeatureBuildId
LDFLAGS += -Wl,--build-id
CCACHE := $(SRCROOT)/devtools/bin/linux/ccache
#
# If we should be running in a chroot, check to see if we are. If not, then prefix everything with the
# required chroot
#
ifeq ($(NDK), 1)
CC = $(shell $(NDK_PATH)/ndk-which gcc $(NDK_ABI))
CXX = $(shell $(NDK_PATH)/ndk-which g++ $(NDK_ABI))
LD = $(shell $(NDK_PATH)/ndk-which ld $(NDK_ABI))
AR = $(shell $(NDK_PATH)/ndk-which ar $(NDK_ABI))
LINK = $(shell $(NDK_PATH)/ndk-which gcc $(NDK_ABI))
STRIP = $(shell $(NDK_PATH)/ndk-which strip $(NDK_ABI))
ifeq ($(NDK_ABI), x86)
ARCH_FLAGS += -m32 -march=pentium4 -mtune=core2 -msse2 -mfpmath=sse
else ifeq ($(NDK_ABI), armeabi-v7a)
CXXFLAGS += -march=armv7-a -mtune=cortex-a15 -mthumb -mfloat-abi=softfp -mfpu=neon -mcpu=cortex-a9 -pipe -mvectorize-with-neon-quad -fPIC -fuse-ld=bfd
LDFLAGS += -fuse-ld=bfd
LDFLAGS += -march=armv7-a -mtune=cortex-a15 -mthumb -mfloat-abi=softfp -mfpu=neon -mcpu=cortex-a9 -pipe -mvectorize-with-neon-quad -fPIC -no-canonical-prefixes -Wl,--fix-cortex-a8 -Wl,--no-warn-mismatch -Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now
endif
else
# pentium4 = MMX, SSE, SSE2 - no SSE3 (added in prescott) # -msse3 -mfpmath=sse
ARCH_FLAGS += -m32 -march=$(MARCH_TARGET) -mtune=core2 $(SSE_GEN_FLAGS)
LD_SO = ld-linux.so.2
LIBSTDCXX := $(shell $(CXX) $(ARCH_FLAGS) -print-file-name=libstdc++.so)
LIBSTDCXXPIC := $(shell $(CXX) $(ARCH_FLAGS) -print-file-name=libstdc++.so)
LDFLAGS += -m32
ifdef MAKE_CHROOT
export STEAM_RUNTIME_PATH := /usr
ifneq ("$(SCHROOT_CHROOT_NAME)", "$(CHROOT_NAME)")
$(info '$(SCHROOT_CHROOT_NAME)' is not '$(CHROOT_NAME)')
$(error This makefile should be run from within a chroot. 'schroot --chroot $(CHROOT_NAME) -- $(MAKE) $(MAKEFLAGS)')
endif
GCC_VER = -4.8
P4BIN = $(SRCROOT)/devtools/bin/linux/p4
CRYPTOPPDIR=ubuntu12_32_gcc48
else ifeq ($(USE_VALVE_BINDIR),1)
# Using /valve/bin directory.
export STEAM_RUNTIME_PATH ?= /valve
GCC_VER = -4.6
P4BIN = $(SRCROOT)/devtools/bin/linux/p4
CRYPTOPPDIR=linux32
else
# Not using chroot, use old steam-runtime. (gcc 4.6.3)
export STEAM_RUNTIME_PATH ?= /valve/steam-runtime
GCC_VER =
P4BIN = true
CRYPTOPPDIR=ubuntu12_32
endif
ifeq ($(TARGET_PLATFORM),linux64)
MARCH_TARGET = core2
else
MARCH_TARGET = pentium4
endif
ifeq ($(USE_VALVE_BINDIR),1)
# On dedicated servers, some plugins depend on global variable symbols in addition to functions.
# So symbols like _Z16ClearMultiDamagev should show up when you do "nm server_srv.so" in TF2.
STRIP_FLAGS =
else
# Linux desktop client (or client/dedicated server in chroot).
STRIP_FLAGS = -x
endif
ifeq ($(CLANG_BUILD),1)
# Clang does not support -mfpmath=sse because it uses whatever
# instruction set extensions are available by default.
SSE_GEN_FLAGS = -msse2
else
SSE_GEN_FLAGS = -msse2 -mfpmath=sse
endif
# - pch_defines,time_macros,file_macro needed for precompiled headers to be beneficial. See additional ".defines" wrapper
# for PCH below to prevent this from biting us (in theory)
# - include_file_ctime/mtime causes re-generated but identical headers, like protobuf, to cause a cache miss. I couldn't
# find the justification for this setting being on by default, perhaps to not waste time preprocessing the files?
# Let's find out the painful way.
export CCACHE_SLOPPINESS := $(CCACHE_SLOPPINESS),time_macros,file_macro,include_file_ctime,include_file_mtime,pch_defines
# Needed for clang to take advantage of PCH, we include the PCH in the
# source files and clang doesn't support -fpch-preprocess properly
ifeq ($(CLANG_BUILD),1)
export CCACHE_CPP2 = 1
endif
# If not specified by environment, use steam runtime compilers + in-tree ccache
ifneq ($(filter default undefined,$(origin AR)),)
AR = ar crs
endif
ifneq ($(filter default undefined,$(origin CC)),)
CC = gcc -m32
endif
ifneq ($(filter default undefined,$(origin CXX)),)
CXX = g++ -m32
endif
LINK ?= $(CC)
ifeq ($(TARGET_PLATFORM),linux64)
# nocona = pentium4 + 64bit + MMX, SSE, SSE2, SSE3 - no SSSE3 (that's three s's - added in core2)
ARCH_FLAGS += -march=$(MARCH_TARGET) -mtune=core2
LD_SO = ld-linux-x86_64.so.2
LIBSTDCXX := $(shell $(CXX) -print-file-name=libstdc++.a)
LIBSTDCXXPIC := $(shell $(CXX) -print-file-name=libstdc++-pic.a)
else
# pentium4 = MMX, SSE, SSE2 - no SSE3 (added in prescott) # -msse3 -mfpmath=sse
ARCH_FLAGS += -m32 -march=$(MARCH_TARGET) -mtune=core2 $(SSE_GEN_FLAGS)
LD_SO = ld-linux.so.2
LIBSTDCXX := $(shell $(CXX) $(ARCH_FLAGS) -print-file-name=libstdc++.so)
LIBSTDCXXPIC := $(shell $(CXX) $(ARCH_FLAGS) -print-file-name=libstdc++.so)
LDFLAGS += -m32
endif
endif
GEN_SYM ?= $(SRCROOT)/devtools/gendbg.sh
@ -243,6 +271,12 @@ else
endif
VSIGN ?= true
#ifeq ($(TARGET_PLATFORM),$(filter $(TARGET_PLATFORM),linux32 android32 androidarm32))
#ifeq ($(TARGET_PLATFORM),linux32)
# FIXME(maximsmol): linux can't link stripped .ar archives apparently
STRIP="true"
#endif
ifeq ($(SOURCE_SDK), 1)
Srv_GAMEOUTPUTFILE := $(GAMEOUTPUTFILE:.so=_srv.so)
COPY_DLL_TO_SRV := 1
@ -272,12 +306,30 @@ else
CFLAGS += $(STACK_PROTECTOR)
endif
LIB_START_EXE = $(PATHWRAP) -static-libgcc -Wl,--start-group
LIB_END_EXE = -Wl,--end-group -lm -ldl $(LIBSTDCXX) -lpthread
LIB_START_SHLIB = $(PATHWRAP) -static-libgcc -Wl,--start-group
LIB_END_SHLIB = -Wl,--end-group -lm -ldl $(LIBSTDCXXPIC) -lpthread -l:$(LD_SO) -Wl,--version-script=$(SRCROOT)/devtools/version_script.linux.txt
ifeq ($(NDK), 1)
#LIB_END_SHLIB = "-Wl,--end-group -L$(SYSROOT)/usr/lib -lm_hard -ldl -lz -landroid -lstdc++ -lc -llog -Wl,--version-script=$(SRCROOT)/devtools/version_script.linux.txt"
#LIB_START_SHLIB = $(PATHWRAP) -Wl,--start-group
#LIB_END_SHLIB := -Wl,--end-group -L$(SYSROOT)/usr/lib -lm -ldl -lz -landroid -llog
#LIBFILES += "$(NDK_PATH)/sources/cxx-stl/stlport/libs/armeabi-v7a-hard/thumb/libstlport_static.a"
#LIBFILES += "$(SRCROOT)/lib/public/armeabi-v7a/libandroid_support.a"
#LIB_END_SHLIB = "-Wl,--end-group -L$(SYSROOT)/usr/lib -lm_hard -ldl -lz -landroid -lstdc++ -lc -llog -Wl,--version-script=$(SRCROOT)/devtools/version_script.linux.txt"
LIB_START_SHLIB = $(PATHWRAP) -Wl,--start-group
LIB_END_SHLIB := -Wl,--end-group -L$(SYSROOT)/usr/lib -lm -ldl -lz -landroid -llog
ifeq ($(NDK_ABI), x86)
LIBFILES += "$(NDK_PATH)/sources/cxx-stl/stlport/libs/x86/libstlport_static.a"
#LIBFILES += "$(SRCROOT)/lib/public/x86/libandroid_support.a"
else ifeq ($(NDK_ABI), armeabi-v7a)
LIBFILES += "$(NDK_PATH)/sources/cxx-stl/stlport/libs/armeabi-v7a-hard/thumb/libstlport_static.a"
#LIBFILES += "$(SRCROOT)/lib/public/armeabi-v7a/libandroid_support.a"
endif
else
LIB_START_SHLIB = $(PATHWRAP) -static-libgcc -Wl,--start-group
LIB_END_SHLIB := -Wl,--end-group -lm -ldl $(LIBSTDCXXPIC) -lpthread -l:$(LD_SO) -Wl,--version-script=$(SRCROOT)/devtools/version_script.linux.txt
endif
#
# Profile-directed optimizations.
@ -295,6 +347,11 @@ LIB_END_SHLIB = -Wl,--end-group -lm -ldl $(LIBSTDCXXPIC) -lpthread -l:$(LD_SO) -
# The compiler command lne for each src code file to compile
#############################################################################
ifeq ($(NDK),1)
# Replace and update
ARFLAGS = "ru"
endif
OBJ_DIR = ./obj_$(NAME)_$(TARGET_PLATFORM)$(TARGET_PLATFORM_EXT)/$(CFG)
CPP_TO_OBJ = $(CPPFILES:.cpp=.o)
CXX_TO_OBJ = $(CPP_TO_OBJ:.cxx=.o)
@ -421,7 +478,11 @@ else
endif
ifneq "$(origin VALVE_NO_AUTO_P4)" "undefined"
P4_EDIT_START = chmod -R +w
ifeq ($(NDK),1)
P4_EDIT_START = true
else
P4_EDIT_START = chmod -R +w
endif
P4_EDIT_END = || true
P4_REVERT_START = true
P4_REVERT_END =
@ -541,7 +602,7 @@ endif
$(LIB_File): $(OTHER_DEPENDENCIES) $(OBJS)
$(QUIET_PREFIX) -$(P4_EDIT_START) $(LIB_File) $(P4_EDIT_END);
$(QUIET_PREFIX) $(AR) $(LIB_File) $(OBJS) $(LIBFILES);
$(QUIET_PREFIX) $(AR) $(ARFLAGS) $(LIB_File) $(OBJS) $(LIBFILES);
$(SHELL) -c "$(POSTBUILDCOMMAND)"
SO_GameOutputFile = $(GAMEOUTPUTFILE)

BIN
dmxloader/dmxloader.a Normal file

Binary file not shown.

View File

@ -2164,7 +2164,10 @@ int CWaveDataStreamAsync::ReadSourceData( void **pData, int sampleIndex, int sam
// past the end of the file? stop the wave.
if ( m_bufferCount <= 0 )
{
printf("ReadSourceData: m_bufferCount <= 0\n");
return 0;
}
// clamp available samples to buffer size
if ( m_bufferCount > m_bufferSize )
@ -2228,6 +2231,7 @@ int CWaveDataStreamAsync::ReadSourceData( void **pData, int sampleIndex, int sam
m_bufferCount * m_sampleSize,
&postprocessed ) )
{
printf("ReadSourceData: !wavedatacache->CopyDataIntoMemory\n");
return 0;
}
@ -2283,6 +2287,7 @@ int CWaveDataStreamAsync::ReadSourceData( void **pData, int sampleIndex, int sam
return available;
}
printf("ReadSourceData: return 0\n");
return 0;
}

View File

@ -102,7 +102,7 @@ int CAudioMixerWaveMP3::StreamRequestData( void *pBuffer, int bytesRequested, in
void *pData = NULL;
int bytesRead = m_pData->ReadSourceData( &pData, offset + totalBytesRead, bytesRequested, pOutputBuffer );
if ( !bytesRead )
break;
if ( bytesRead > bytesRequested )

View File

@ -27,6 +27,11 @@ void CVPC::SetupDefaultConditionals()
FindOrCreateConditional( "X360", true, CONDITIONAL_PLATFORM );
FindOrCreateConditional( "PS3", true, CONDITIONAL_PLATFORM );
FindOrCreateConditional( "ANDROID32", true, CONDITIONAL_PLATFORM );
FindOrCreateConditional( "ANDROID64", true, CONDITIONAL_PLATFORM );
FindOrCreateConditional( "ANDROIDARM32", true, CONDITIONAL_PLATFORM );
FindOrCreateConditional( "ANDROIDARM64", true, CONDITIONAL_PLATFORM );
}
//

View File

@ -2040,8 +2040,21 @@ void CVPC::SetMacrosAndConditionals()
SetMacro( "_EXTERNAL_IMPLIB_EXT", "_ios.dylib", false );
SetMacro( "_EXTERNAL_STATICLIB_EXT", "_ios.a", false );
}
else if ( V_stricmp( cVPCPlatform.String(), "ANDROID" ) == 0 )
else if ( V_stricmp( cVPCPlatform.String(), "ANDROID32" ) == 0 || V_stricmp( cVPCPlatform.String(), "ANDROID64" ) == 0 || V_stricmp( cVPCPlatform.String(), "ANDROIDARM32" ) == 0 || V_stricmp( cVPCPlatform.String(), "ANDROIDARM64" ) == 0)
{
bool IsAndroid86 = ( V_stricmp( cVPCPlatform.String(), "ANDROID32" ) == 0 || V_stricmp( cVPCPlatform.String(), "ANDROID64" ) == 0);
bool IsAndroidARM = ( V_stricmp( cVPCPlatform.String(), "ANDROIDARM32" ) == 0 || V_stricmp( cVPCPlatform.String(), "ANDROIDARM64" ) == 0);
bool IsAndroid64 = ( V_stricmp( cVPCPlatform.String(), "ANDROID64" ) == 0 || V_stricmp( cVPCPlatform.String(), "ANDROIDARM64" ) == 0);
if ( IsAndroid86 )
{
SetMacro( "PLATSUBDIR", IsAndroid64 ? "\\android64" : "\\android32", false );
}
else
{
SetMacro( "PLATSUBDIR", IsAndroid64 ? "\\androidarm64" : "\\androidarm32", false );
}
SetConditional( "LINUXALL" );
if ( m_bDedicatedBuild )
{
@ -2057,25 +2070,29 @@ void CVPC::SetMacrosAndConditionals()
SetMacro( "ANDROID", "1", true );
SetMacro( "_ANDROID", "1", true );
SetMacro( "_DLL_EXT", "_an.so", true );
SetMacro( "_IMPLIB_EXT", "_an.so", false );
const char *str3264 = IsAndroid64 ? "64" : "";
const char *strSrv = m_bAppendSrvToDedicated ? "_srv" : "";
CFmtStrN<128> strDso( "%s%s.so", strSrv, str3264 );
CFmtStrN<128> strLib( "%s%s.a", strSrv, str3264 );
SetMacro( "_DLL_EXT", strDso.Access(), true );
SetMacro( "_IMPLIB_EXT", strDso.Access(), false );
SetMacro( "_STATICLIB_EXT", strLib.Access(), false );
// Extensions for external dependencies like libsteam_api.so (not libsteam_api_ds.so).
// VPC_Keyword_Folder in projectscript.cpp will check for ImpLibExternal or LibExternal and
// use these prefixes instead of _ds.so if they exist.
SetMacro( "_EXTERNAL_DLL_EXT", ".so", true );
SetMacro( "_EXTERNAL_IMPLIB_EXT", ".so", false );
SetMacro( "_EXTERNAL_STATICLIB_EXT", ".a", false );
//SetMacro( "_STATICLIB_PREFIX", "lib", false );
SetMacro( "_STATICLIB_PREFIX", "", false );
SetMacro( "_IMPLIB_PREFIX", "lib", false );
SetMacro( "_IMPLIB_DLL_PREFIX", "lib", false );
SetMacro( "_STATICLIB_PREFIX", "lib", false );
SetMacro( "_STATICLIB_EXT", "_an.a", false );
SetMacro( "_EXE_EXT", "", false );
SetMacro( "_EXTERNAL_DLL_EXT", "_an.so", true );
SetMacro( "_EXTERNAL_IMPLIB_EXT", "_an.so", false );
SetMacro( "_EXTERNAL_STATICLIB_EXT", "_an.a", false );
// and is a cross-compiled target
SetConditional( "CROSS_COMPILED" );
SetMacro( "CROSS_COMPILED", "1", true );
SetMacro( "_CROSS_COMPILED", "1", true );
SetMacro( "_SYM_EXT", ".dbg", false );
SetConditional( "GL" );
}
@ -2311,7 +2328,7 @@ void CVPC::SetupGenerators()
extern IBaseProjectGenerator *GetXcodeProjectGenerator();
extern IBaseSolutionGenerator *GetXcodeSolutionGenerator();
bool bIsLinux = IsPlatformDefined( "LINUX32" ) || IsPlatformDefined( "LINUX64" );
bool bIsLinux = IsPlatformDefined( "LINUX32" ) || IsPlatformDefined( "LINUX64" ) || IsPlatformDefined( "ANDROID32" ) || IsPlatformDefined( "ANDROID64" ) || IsPlatformDefined( "ANDROIDARM32" ) || IsPlatformDefined( "ANDROIDARM64" );
bool bIsOSX = IsPlatformDefined( "OSX32" ) || IsPlatformDefined( "OSX64" );
#if defined( WIN32 )

View File

@ -0,0 +1,43 @@
obj/Linux/release/baseprojectdatacollector.d obj/Linux/release/baseprojectdatacollector.o: \
baseprojectdatacollector.cpp vpc.h ../../public/tier1/utlstring.h \
../../public/tier1/utlmemory.h ../../public/tier0/dbg.h \
../../public/tier0/platform.h ../../public/tier0/wchartypes.h \
../../public/tier0/valve_off.h ../../public/tier0/valve_on.h \
../../public/tier0/annotations.h ../../public/tier0/basetypes.h \
../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/mathlib/mathlib.h ../../public/mathlib/vector.h \
../../public/tier0/threadtools.h ../../public/mathlib/vector2d.h \
../../public/vstdlib/random.h ../../public/vstdlib/vstdlib.h \
../../public/tier1/interface.h ../../public/mathlib/math_pfns.h \
../../public/mathlib/fltx4.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/memdbgoff.h \
../../public/tier1/strtools.h ../../public/tier1/utlrbtree.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/utlvector.h ../../public/tier1/utlbuffer.h \
../../public/unitlib/unitlib.h ../../public/tier1/byteswap.h \
../../public/datamap.h ../../public/tier1/utlvector.h \
../../public/tier0/memdbgon.h ../../public/tier0/memdbgoff.h \
../../public/tier1/utlstack.h ../../public/tier1/utlmemory.h \
../../public/tier1/utldict.h ../../public/tier1/utlmap.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlsymbol.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utllinkedlist.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/stringpool.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utlsortvector.h \
../../public/tier1/checksum_crc.h ../../public/tier1/checksum_md5.h \
../../public/tier1/fmtstr.h ../../public/tier1/exprevaluator.h \
../../public/p4lib/ip4.h ../../public/tier1/utlstring.h \
../../public/appframework/iappsystem.h \
../../public/interfaces/interfaces.h scriptsource.h \
../../public/tier0/logging.h sys_utils.h \
../vpccrccheck/crccheck_shared.h ../../public/tier1/keyvalues.h \
../../public/tier1/exprevaluator.h generatordefinition.h \
ibasesolutiongenerator.h dependencies.h ibaseprojectgenerator.h \
baseprojectdatacollector.h ../../public/tier1/keyvalues.h \
../../public/tier1/utlstack.h

Binary file not shown.

View File

@ -0,0 +1,40 @@
obj/Linux/release/conditionals.d obj/Linux/release/conditionals.o: conditionals.cpp vpc.h \
../../public/tier1/utlstring.h ../../public/tier1/utlmemory.h \
../../public/tier0/dbg.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/mathlib/mathlib.h ../../public/mathlib/vector.h \
../../public/tier0/threadtools.h ../../public/mathlib/vector2d.h \
../../public/vstdlib/random.h ../../public/vstdlib/vstdlib.h \
../../public/tier1/interface.h ../../public/mathlib/math_pfns.h \
../../public/mathlib/fltx4.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/memdbgoff.h \
../../public/tier1/strtools.h ../../public/tier1/utlrbtree.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/utlvector.h ../../public/tier1/utlbuffer.h \
../../public/unitlib/unitlib.h ../../public/tier1/byteswap.h \
../../public/datamap.h ../../public/tier1/utlvector.h \
../../public/tier0/memdbgon.h ../../public/tier0/memdbgoff.h \
../../public/tier1/utlstack.h ../../public/tier1/utlmemory.h \
../../public/tier1/utldict.h ../../public/tier1/utlmap.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlsymbol.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utllinkedlist.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/stringpool.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utlsortvector.h \
../../public/tier1/checksum_crc.h ../../public/tier1/checksum_md5.h \
../../public/tier1/fmtstr.h ../../public/tier1/exprevaluator.h \
../../public/p4lib/ip4.h ../../public/tier1/utlstring.h \
../../public/appframework/iappsystem.h \
../../public/interfaces/interfaces.h scriptsource.h \
../../public/tier0/logging.h sys_utils.h \
../vpccrccheck/crccheck_shared.h ../../public/tier1/keyvalues.h \
../../public/tier1/exprevaluator.h generatordefinition.h \
ibasesolutiongenerator.h dependencies.h ibaseprojectgenerator.h

Binary file not shown.

View File

@ -0,0 +1,40 @@
obj/Linux/release/configuration.d obj/Linux/release/configuration.o: configuration.cpp vpc.h \
../../public/tier1/utlstring.h ../../public/tier1/utlmemory.h \
../../public/tier0/dbg.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/mathlib/mathlib.h ../../public/mathlib/vector.h \
../../public/tier0/threadtools.h ../../public/mathlib/vector2d.h \
../../public/vstdlib/random.h ../../public/vstdlib/vstdlib.h \
../../public/tier1/interface.h ../../public/mathlib/math_pfns.h \
../../public/mathlib/fltx4.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/memdbgoff.h \
../../public/tier1/strtools.h ../../public/tier1/utlrbtree.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/utlvector.h ../../public/tier1/utlbuffer.h \
../../public/unitlib/unitlib.h ../../public/tier1/byteswap.h \
../../public/datamap.h ../../public/tier1/utlvector.h \
../../public/tier0/memdbgon.h ../../public/tier0/memdbgoff.h \
../../public/tier1/utlstack.h ../../public/tier1/utlmemory.h \
../../public/tier1/utldict.h ../../public/tier1/utlmap.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlsymbol.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utllinkedlist.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/stringpool.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utlsortvector.h \
../../public/tier1/checksum_crc.h ../../public/tier1/checksum_md5.h \
../../public/tier1/fmtstr.h ../../public/tier1/exprevaluator.h \
../../public/p4lib/ip4.h ../../public/tier1/utlstring.h \
../../public/appframework/iappsystem.h \
../../public/interfaces/interfaces.h scriptsource.h \
../../public/tier0/logging.h sys_utils.h \
../vpccrccheck/crccheck_shared.h ../../public/tier1/keyvalues.h \
../../public/tier1/exprevaluator.h generatordefinition.h \
ibasesolutiongenerator.h dependencies.h ibaseprojectgenerator.h

Binary file not shown.

View File

@ -0,0 +1,42 @@
obj/Linux/release/dependencies.d obj/Linux/release/dependencies.o: dependencies.cpp vpc.h \
../../public/tier1/utlstring.h ../../public/tier1/utlmemory.h \
../../public/tier0/dbg.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/mathlib/mathlib.h ../../public/mathlib/vector.h \
../../public/tier0/threadtools.h ../../public/mathlib/vector2d.h \
../../public/vstdlib/random.h ../../public/vstdlib/vstdlib.h \
../../public/tier1/interface.h ../../public/mathlib/math_pfns.h \
../../public/mathlib/fltx4.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/memdbgoff.h \
../../public/tier1/strtools.h ../../public/tier1/utlrbtree.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/utlvector.h ../../public/tier1/utlbuffer.h \
../../public/unitlib/unitlib.h ../../public/tier1/byteswap.h \
../../public/datamap.h ../../public/tier1/utlvector.h \
../../public/tier0/memdbgon.h ../../public/tier0/memdbgoff.h \
../../public/tier1/utlstack.h ../../public/tier1/utlmemory.h \
../../public/tier1/utldict.h ../../public/tier1/utlmap.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlsymbol.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utllinkedlist.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/stringpool.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utlsortvector.h \
../../public/tier1/checksum_crc.h ../../public/tier1/checksum_md5.h \
../../public/tier1/fmtstr.h ../../public/tier1/exprevaluator.h \
../../public/p4lib/ip4.h ../../public/tier1/utlstring.h \
../../public/appframework/iappsystem.h \
../../public/interfaces/interfaces.h scriptsource.h \
../../public/tier0/logging.h sys_utils.h \
../vpccrccheck/crccheck_shared.h ../../public/tier1/keyvalues.h \
../../public/tier1/exprevaluator.h generatordefinition.h \
ibasesolutiongenerator.h dependencies.h ibaseprojectgenerator.h \
baseprojectdatacollector.h ../../public/tier1/keyvalues.h \
../../public/tier1/utlstack.h ../../public/tier0/fasttimer.h

Binary file not shown.

View File

@ -0,0 +1,40 @@
obj/Linux/release/exprsimplifier.d obj/Linux/release/exprsimplifier.o: exprsimplifier.cpp vpc.h \
../../public/tier1/utlstring.h ../../public/tier1/utlmemory.h \
../../public/tier0/dbg.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/mathlib/mathlib.h ../../public/mathlib/vector.h \
../../public/tier0/threadtools.h ../../public/mathlib/vector2d.h \
../../public/vstdlib/random.h ../../public/vstdlib/vstdlib.h \
../../public/tier1/interface.h ../../public/mathlib/math_pfns.h \
../../public/mathlib/fltx4.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/memdbgoff.h \
../../public/tier1/strtools.h ../../public/tier1/utlrbtree.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/utlvector.h ../../public/tier1/utlbuffer.h \
../../public/unitlib/unitlib.h ../../public/tier1/byteswap.h \
../../public/datamap.h ../../public/tier1/utlvector.h \
../../public/tier0/memdbgon.h ../../public/tier0/memdbgoff.h \
../../public/tier1/utlstack.h ../../public/tier1/utlmemory.h \
../../public/tier1/utldict.h ../../public/tier1/utlmap.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlsymbol.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utllinkedlist.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/stringpool.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utlsortvector.h \
../../public/tier1/checksum_crc.h ../../public/tier1/checksum_md5.h \
../../public/tier1/fmtstr.h ../../public/tier1/exprevaluator.h \
../../public/p4lib/ip4.h ../../public/tier1/utlstring.h \
../../public/appframework/iappsystem.h \
../../public/interfaces/interfaces.h scriptsource.h \
../../public/tier0/logging.h sys_utils.h \
../vpccrccheck/crccheck_shared.h ../../public/tier1/keyvalues.h \
../../public/tier1/exprevaluator.h generatordefinition.h \
ibasesolutiongenerator.h dependencies.h ibaseprojectgenerator.h

Binary file not shown.

View File

@ -0,0 +1,40 @@
obj/Linux/release/groupscript.d obj/Linux/release/groupscript.o: groupscript.cpp vpc.h \
../../public/tier1/utlstring.h ../../public/tier1/utlmemory.h \
../../public/tier0/dbg.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/mathlib/mathlib.h ../../public/mathlib/vector.h \
../../public/tier0/threadtools.h ../../public/mathlib/vector2d.h \
../../public/vstdlib/random.h ../../public/vstdlib/vstdlib.h \
../../public/tier1/interface.h ../../public/mathlib/math_pfns.h \
../../public/mathlib/fltx4.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/memdbgoff.h \
../../public/tier1/strtools.h ../../public/tier1/utlrbtree.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/utlvector.h ../../public/tier1/utlbuffer.h \
../../public/unitlib/unitlib.h ../../public/tier1/byteswap.h \
../../public/datamap.h ../../public/tier1/utlvector.h \
../../public/tier0/memdbgon.h ../../public/tier0/memdbgoff.h \
../../public/tier1/utlstack.h ../../public/tier1/utlmemory.h \
../../public/tier1/utldict.h ../../public/tier1/utlmap.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlsymbol.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utllinkedlist.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/stringpool.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utlsortvector.h \
../../public/tier1/checksum_crc.h ../../public/tier1/checksum_md5.h \
../../public/tier1/fmtstr.h ../../public/tier1/exprevaluator.h \
../../public/p4lib/ip4.h ../../public/tier1/utlstring.h \
../../public/appframework/iappsystem.h \
../../public/interfaces/interfaces.h scriptsource.h \
../../public/tier0/logging.h sys_utils.h \
../vpccrccheck/crccheck_shared.h ../../public/tier1/keyvalues.h \
../../public/tier1/exprevaluator.h generatordefinition.h \
ibasesolutiongenerator.h dependencies.h ibaseprojectgenerator.h

Binary file not shown.

View File

@ -0,0 +1,10 @@
obj/Linux/release/interfaces/interfaces.d obj/Linux/release/interfaces/interfaces.o: \
../../interfaces/interfaces.cpp ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/dbg.h ../../public/tier0/basetypes.h \
../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/interfaces/interfaces.h

Binary file not shown.

View File

@ -0,0 +1,40 @@
obj/Linux/release/macros.d obj/Linux/release/macros.o: macros.cpp vpc.h \
../../public/tier1/utlstring.h ../../public/tier1/utlmemory.h \
../../public/tier0/dbg.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/mathlib/mathlib.h ../../public/mathlib/vector.h \
../../public/tier0/threadtools.h ../../public/mathlib/vector2d.h \
../../public/vstdlib/random.h ../../public/vstdlib/vstdlib.h \
../../public/tier1/interface.h ../../public/mathlib/math_pfns.h \
../../public/mathlib/fltx4.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/memdbgoff.h \
../../public/tier1/strtools.h ../../public/tier1/utlrbtree.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/utlvector.h ../../public/tier1/utlbuffer.h \
../../public/unitlib/unitlib.h ../../public/tier1/byteswap.h \
../../public/datamap.h ../../public/tier1/utlvector.h \
../../public/tier0/memdbgon.h ../../public/tier0/memdbgoff.h \
../../public/tier1/utlstack.h ../../public/tier1/utlmemory.h \
../../public/tier1/utldict.h ../../public/tier1/utlmap.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlsymbol.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utllinkedlist.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/stringpool.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utlsortvector.h \
../../public/tier1/checksum_crc.h ../../public/tier1/checksum_md5.h \
../../public/tier1/fmtstr.h ../../public/tier1/exprevaluator.h \
../../public/p4lib/ip4.h ../../public/tier1/utlstring.h \
../../public/appframework/iappsystem.h \
../../public/interfaces/interfaces.h scriptsource.h \
../../public/tier0/logging.h sys_utils.h \
../vpccrccheck/crccheck_shared.h ../../public/tier1/keyvalues.h \
../../public/tier1/exprevaluator.h generatordefinition.h \
ibasesolutiongenerator.h dependencies.h ibaseprojectgenerator.h

Binary file not shown.

View File

@ -0,0 +1,41 @@
obj/Linux/release/main.d obj/Linux/release/main.o: main.cpp vpc.h ../../public/tier1/utlstring.h \
../../public/tier1/utlmemory.h ../../public/tier0/dbg.h \
../../public/tier0/platform.h ../../public/tier0/wchartypes.h \
../../public/tier0/valve_off.h ../../public/tier0/valve_on.h \
../../public/tier0/annotations.h ../../public/tier0/basetypes.h \
../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/mathlib/mathlib.h ../../public/mathlib/vector.h \
../../public/tier0/threadtools.h ../../public/mathlib/vector2d.h \
../../public/vstdlib/random.h ../../public/vstdlib/vstdlib.h \
../../public/tier1/interface.h ../../public/mathlib/math_pfns.h \
../../public/mathlib/fltx4.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/memdbgoff.h \
../../public/tier1/strtools.h ../../public/tier1/utlrbtree.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/utlvector.h ../../public/tier1/utlbuffer.h \
../../public/unitlib/unitlib.h ../../public/tier1/byteswap.h \
../../public/datamap.h ../../public/tier1/utlvector.h \
../../public/tier0/memdbgon.h ../../public/tier0/memdbgoff.h \
../../public/tier1/utlstack.h ../../public/tier1/utlmemory.h \
../../public/tier1/utldict.h ../../public/tier1/utlmap.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlsymbol.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utllinkedlist.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/stringpool.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utlsortvector.h \
../../public/tier1/checksum_crc.h ../../public/tier1/checksum_md5.h \
../../public/tier1/fmtstr.h ../../public/tier1/exprevaluator.h \
../../public/p4lib/ip4.h ../../public/tier1/utlstring.h \
../../public/appframework/iappsystem.h \
../../public/interfaces/interfaces.h scriptsource.h \
../../public/tier0/logging.h sys_utils.h \
../vpccrccheck/crccheck_shared.h ../../public/tier1/keyvalues.h \
../../public/tier1/exprevaluator.h generatordefinition.h \
ibasesolutiongenerator.h dependencies.h ibaseprojectgenerator.h p4sln.h \
../../public/ilaunchabledll.h

Binary file not shown.

View File

@ -0,0 +1,43 @@
obj/Linux/release/projectgenerator_codelite.d obj/Linux/release/projectgenerator_codelite.o: \
projectgenerator_codelite.cpp vpc.h ../../public/tier1/utlstring.h \
../../public/tier1/utlmemory.h ../../public/tier0/dbg.h \
../../public/tier0/platform.h ../../public/tier0/wchartypes.h \
../../public/tier0/valve_off.h ../../public/tier0/valve_on.h \
../../public/tier0/annotations.h ../../public/tier0/basetypes.h \
../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/mathlib/mathlib.h ../../public/mathlib/vector.h \
../../public/tier0/threadtools.h ../../public/mathlib/vector2d.h \
../../public/vstdlib/random.h ../../public/vstdlib/vstdlib.h \
../../public/tier1/interface.h ../../public/mathlib/math_pfns.h \
../../public/mathlib/fltx4.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/memdbgoff.h \
../../public/tier1/strtools.h ../../public/tier1/utlrbtree.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/utlvector.h ../../public/tier1/utlbuffer.h \
../../public/unitlib/unitlib.h ../../public/tier1/byteswap.h \
../../public/datamap.h ../../public/tier1/utlvector.h \
../../public/tier0/memdbgon.h ../../public/tier0/memdbgoff.h \
../../public/tier1/utlstack.h ../../public/tier1/utlmemory.h \
../../public/tier1/utldict.h ../../public/tier1/utlmap.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlsymbol.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utllinkedlist.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/stringpool.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utlsortvector.h \
../../public/tier1/checksum_crc.h ../../public/tier1/checksum_md5.h \
../../public/tier1/fmtstr.h ../../public/tier1/exprevaluator.h \
../../public/p4lib/ip4.h ../../public/tier1/utlstring.h \
../../public/appframework/iappsystem.h \
../../public/interfaces/interfaces.h scriptsource.h \
../../public/tier0/logging.h sys_utils.h \
../vpccrccheck/crccheck_shared.h ../../public/tier1/keyvalues.h \
../../public/tier1/exprevaluator.h generatordefinition.h \
ibasesolutiongenerator.h dependencies.h ibaseprojectgenerator.h \
projectgenerator_codelite.h baseprojectdatacollector.h \
../../public/tier1/keyvalues.h ../../public/tier1/utlstack.h

View File

@ -0,0 +1,43 @@
obj/Linux/release/projectgenerator_makefile.d obj/Linux/release/projectgenerator_makefile.o: \
projectgenerator_makefile.cpp vpc.h ../../public/tier1/utlstring.h \
../../public/tier1/utlmemory.h ../../public/tier0/dbg.h \
../../public/tier0/platform.h ../../public/tier0/wchartypes.h \
../../public/tier0/valve_off.h ../../public/tier0/valve_on.h \
../../public/tier0/annotations.h ../../public/tier0/basetypes.h \
../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/mathlib/mathlib.h ../../public/mathlib/vector.h \
../../public/tier0/threadtools.h ../../public/mathlib/vector2d.h \
../../public/vstdlib/random.h ../../public/vstdlib/vstdlib.h \
../../public/tier1/interface.h ../../public/mathlib/math_pfns.h \
../../public/mathlib/fltx4.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/memdbgoff.h \
../../public/tier1/strtools.h ../../public/tier1/utlrbtree.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/utlvector.h ../../public/tier1/utlbuffer.h \
../../public/unitlib/unitlib.h ../../public/tier1/byteswap.h \
../../public/datamap.h ../../public/tier1/utlvector.h \
../../public/tier0/memdbgon.h ../../public/tier0/memdbgoff.h \
../../public/tier1/utlstack.h ../../public/tier1/utlmemory.h \
../../public/tier1/utldict.h ../../public/tier1/utlmap.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlsymbol.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utllinkedlist.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/stringpool.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utlsortvector.h \
../../public/tier1/checksum_crc.h ../../public/tier1/checksum_md5.h \
../../public/tier1/fmtstr.h ../../public/tier1/exprevaluator.h \
../../public/p4lib/ip4.h ../../public/tier1/utlstring.h \
../../public/appframework/iappsystem.h \
../../public/interfaces/interfaces.h scriptsource.h \
../../public/tier0/logging.h sys_utils.h \
../vpccrccheck/crccheck_shared.h ../../public/tier1/keyvalues.h \
../../public/tier1/exprevaluator.h generatordefinition.h \
ibasesolutiongenerator.h dependencies.h ibaseprojectgenerator.h \
baseprojectdatacollector.h ../../public/tier1/keyvalues.h \
../../public/tier1/utlstack.h projectgenerator_codelite.h

View File

@ -0,0 +1,42 @@
obj/Linux/release/projectscript.d obj/Linux/release/projectscript.o: projectscript.cpp vpc.h \
../../public/tier1/utlstring.h ../../public/tier1/utlmemory.h \
../../public/tier0/dbg.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/mathlib/mathlib.h ../../public/mathlib/vector.h \
../../public/tier0/threadtools.h ../../public/mathlib/vector2d.h \
../../public/vstdlib/random.h ../../public/vstdlib/vstdlib.h \
../../public/tier1/interface.h ../../public/mathlib/math_pfns.h \
../../public/mathlib/fltx4.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/memdbgoff.h \
../../public/tier1/strtools.h ../../public/tier1/utlrbtree.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/utlvector.h ../../public/tier1/utlbuffer.h \
../../public/unitlib/unitlib.h ../../public/tier1/byteswap.h \
../../public/datamap.h ../../public/tier1/utlvector.h \
../../public/tier0/memdbgon.h ../../public/tier0/memdbgoff.h \
../../public/tier1/utlstack.h ../../public/tier1/utlmemory.h \
../../public/tier1/utldict.h ../../public/tier1/utlmap.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlsymbol.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utllinkedlist.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/stringpool.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utlsortvector.h \
../../public/tier1/checksum_crc.h ../../public/tier1/checksum_md5.h \
../../public/tier1/fmtstr.h ../../public/tier1/exprevaluator.h \
../../public/p4lib/ip4.h ../../public/tier1/utlstring.h \
../../public/appframework/iappsystem.h \
../../public/interfaces/interfaces.h scriptsource.h \
../../public/tier0/logging.h sys_utils.h \
../vpccrccheck/crccheck_shared.h ../../public/tier1/keyvalues.h \
../../public/tier1/exprevaluator.h generatordefinition.h \
ibasesolutiongenerator.h dependencies.h ibaseprojectgenerator.h \
../../public/tier1/utldict.h ../../public/tier1/keyvalues.h \
baseprojectdatacollector.h ../../public/tier1/utlstack.h

Binary file not shown.

View File

@ -0,0 +1,40 @@
obj/Linux/release/scriptsource.d obj/Linux/release/scriptsource.o: scriptsource.cpp vpc.h \
../../public/tier1/utlstring.h ../../public/tier1/utlmemory.h \
../../public/tier0/dbg.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/mathlib/mathlib.h ../../public/mathlib/vector.h \
../../public/tier0/threadtools.h ../../public/mathlib/vector2d.h \
../../public/vstdlib/random.h ../../public/vstdlib/vstdlib.h \
../../public/tier1/interface.h ../../public/mathlib/math_pfns.h \
../../public/mathlib/fltx4.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/memdbgoff.h \
../../public/tier1/strtools.h ../../public/tier1/utlrbtree.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/utlvector.h ../../public/tier1/utlbuffer.h \
../../public/unitlib/unitlib.h ../../public/tier1/byteswap.h \
../../public/datamap.h ../../public/tier1/utlvector.h \
../../public/tier0/memdbgon.h ../../public/tier0/memdbgoff.h \
../../public/tier1/utlstack.h ../../public/tier1/utlmemory.h \
../../public/tier1/utldict.h ../../public/tier1/utlmap.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlsymbol.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utllinkedlist.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/stringpool.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utlsortvector.h \
../../public/tier1/checksum_crc.h ../../public/tier1/checksum_md5.h \
../../public/tier1/fmtstr.h ../../public/tier1/exprevaluator.h \
../../public/p4lib/ip4.h ../../public/tier1/utlstring.h \
../../public/appframework/iappsystem.h \
../../public/interfaces/interfaces.h scriptsource.h \
../../public/tier0/logging.h sys_utils.h \
../vpccrccheck/crccheck_shared.h ../../public/tier1/keyvalues.h \
../../public/tier1/exprevaluator.h generatordefinition.h \
ibasesolutiongenerator.h dependencies.h ibaseprojectgenerator.h

Binary file not shown.

View File

@ -0,0 +1,42 @@
obj/Linux/release/solutiongenerator_codelite.d obj/Linux/release/solutiongenerator_codelite.o: \
solutiongenerator_codelite.cpp vpc.h ../../public/tier1/utlstring.h \
../../public/tier1/utlmemory.h ../../public/tier0/dbg.h \
../../public/tier0/platform.h ../../public/tier0/wchartypes.h \
../../public/tier0/valve_off.h ../../public/tier0/valve_on.h \
../../public/tier0/annotations.h ../../public/tier0/basetypes.h \
../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/mathlib/mathlib.h ../../public/mathlib/vector.h \
../../public/tier0/threadtools.h ../../public/mathlib/vector2d.h \
../../public/vstdlib/random.h ../../public/vstdlib/vstdlib.h \
../../public/tier1/interface.h ../../public/mathlib/math_pfns.h \
../../public/mathlib/fltx4.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/memdbgoff.h \
../../public/tier1/strtools.h ../../public/tier1/utlrbtree.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/utlvector.h ../../public/tier1/utlbuffer.h \
../../public/unitlib/unitlib.h ../../public/tier1/byteswap.h \
../../public/datamap.h ../../public/tier1/utlvector.h \
../../public/tier0/memdbgon.h ../../public/tier0/memdbgoff.h \
../../public/tier1/utlstack.h ../../public/tier1/utlmemory.h \
../../public/tier1/utldict.h ../../public/tier1/utlmap.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlsymbol.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utllinkedlist.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/stringpool.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utlsortvector.h \
../../public/tier1/checksum_crc.h ../../public/tier1/checksum_md5.h \
../../public/tier1/fmtstr.h ../../public/tier1/exprevaluator.h \
../../public/p4lib/ip4.h ../../public/tier1/utlstring.h \
../../public/appframework/iappsystem.h \
../../public/interfaces/interfaces.h scriptsource.h \
../../public/tier0/logging.h sys_utils.h \
../vpccrccheck/crccheck_shared.h ../../public/tier1/keyvalues.h \
../../public/tier1/exprevaluator.h generatordefinition.h \
ibasesolutiongenerator.h dependencies.h ibaseprojectgenerator.h \
../../public/tier1/utlgraph.h

View File

@ -0,0 +1,41 @@
obj/Linux/release/solutiongenerator_makefile.d obj/Linux/release/solutiongenerator_makefile.o: \
solutiongenerator_makefile.cpp vpc.h ../../public/tier1/utlstring.h \
../../public/tier1/utlmemory.h ../../public/tier0/dbg.h \
../../public/tier0/platform.h ../../public/tier0/wchartypes.h \
../../public/tier0/valve_off.h ../../public/tier0/valve_on.h \
../../public/tier0/annotations.h ../../public/tier0/basetypes.h \
../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/mathlib/mathlib.h ../../public/mathlib/vector.h \
../../public/tier0/threadtools.h ../../public/mathlib/vector2d.h \
../../public/vstdlib/random.h ../../public/vstdlib/vstdlib.h \
../../public/tier1/interface.h ../../public/mathlib/math_pfns.h \
../../public/mathlib/fltx4.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/memdbgoff.h \
../../public/tier1/strtools.h ../../public/tier1/utlrbtree.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/utlvector.h ../../public/tier1/utlbuffer.h \
../../public/unitlib/unitlib.h ../../public/tier1/byteswap.h \
../../public/datamap.h ../../public/tier1/utlvector.h \
../../public/tier0/memdbgon.h ../../public/tier0/memdbgoff.h \
../../public/tier1/utlstack.h ../../public/tier1/utlmemory.h \
../../public/tier1/utldict.h ../../public/tier1/utlmap.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlsymbol.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utllinkedlist.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/stringpool.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utlsortvector.h \
../../public/tier1/checksum_crc.h ../../public/tier1/checksum_md5.h \
../../public/tier1/fmtstr.h ../../public/tier1/exprevaluator.h \
../../public/p4lib/ip4.h ../../public/tier1/utlstring.h \
../../public/appframework/iappsystem.h \
../../public/interfaces/interfaces.h scriptsource.h \
../../public/tier0/logging.h sys_utils.h \
../vpccrccheck/crccheck_shared.h ../../public/tier1/keyvalues.h \
../../public/tier1/exprevaluator.h generatordefinition.h \
ibasesolutiongenerator.h dependencies.h ibaseprojectgenerator.h

View File

@ -0,0 +1,42 @@
obj/Linux/release/solutiongenerator_xcode.d obj/Linux/release/solutiongenerator_xcode.o: solutiongenerator_xcode.cpp \
vpc.h ../../public/tier1/utlstring.h ../../public/tier1/utlmemory.h \
../../public/tier0/dbg.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/mathlib/mathlib.h ../../public/mathlib/vector.h \
../../public/tier0/threadtools.h ../../public/mathlib/vector2d.h \
../../public/vstdlib/random.h ../../public/vstdlib/vstdlib.h \
../../public/tier1/interface.h ../../public/mathlib/math_pfns.h \
../../public/mathlib/fltx4.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/memdbgoff.h \
../../public/tier1/strtools.h ../../public/tier1/utlrbtree.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/utlvector.h ../../public/tier1/utlbuffer.h \
../../public/unitlib/unitlib.h ../../public/tier1/byteswap.h \
../../public/datamap.h ../../public/tier1/utlvector.h \
../../public/tier0/memdbgon.h ../../public/tier0/memdbgoff.h \
../../public/tier1/utlstack.h ../../public/tier1/utlmemory.h \
../../public/tier1/utldict.h ../../public/tier1/utlmap.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlsymbol.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utllinkedlist.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/stringpool.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utlsortvector.h \
../../public/tier1/checksum_crc.h ../../public/tier1/checksum_md5.h \
../../public/tier1/fmtstr.h ../../public/tier1/exprevaluator.h \
../../public/p4lib/ip4.h ../../public/tier1/utlstring.h \
../../public/appframework/iappsystem.h \
../../public/interfaces/interfaces.h scriptsource.h \
../../public/tier0/logging.h sys_utils.h \
../vpccrccheck/crccheck_shared.h ../../public/tier1/keyvalues.h \
../../public/tier1/exprevaluator.h generatordefinition.h \
ibasesolutiongenerator.h dependencies.h ibaseprojectgenerator.h \
baseprojectdatacollector.h ../../public/tier1/keyvalues.h \
../../public/tier1/utlstack.h

Binary file not shown.

View File

@ -0,0 +1,40 @@
obj/Linux/release/sys_utils.d obj/Linux/release/sys_utils.o: sys_utils.cpp vpc.h \
../../public/tier1/utlstring.h ../../public/tier1/utlmemory.h \
../../public/tier0/dbg.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/mathlib/mathlib.h ../../public/mathlib/vector.h \
../../public/tier0/threadtools.h ../../public/mathlib/vector2d.h \
../../public/vstdlib/random.h ../../public/vstdlib/vstdlib.h \
../../public/tier1/interface.h ../../public/mathlib/math_pfns.h \
../../public/mathlib/fltx4.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/memdbgoff.h \
../../public/tier1/strtools.h ../../public/tier1/utlrbtree.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/utlvector.h ../../public/tier1/utlbuffer.h \
../../public/unitlib/unitlib.h ../../public/tier1/byteswap.h \
../../public/datamap.h ../../public/tier1/utlvector.h \
../../public/tier0/memdbgon.h ../../public/tier0/memdbgoff.h \
../../public/tier1/utlstack.h ../../public/tier1/utlmemory.h \
../../public/tier1/utldict.h ../../public/tier1/utlmap.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlsymbol.h \
../../public/tier1/utlrbtree.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utllinkedlist.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/stringpool.h ../../public/tier1/utlvector.h \
../../public/tier1/utlbuffer.h ../../public/tier1/utlsortvector.h \
../../public/tier1/checksum_crc.h ../../public/tier1/checksum_md5.h \
../../public/tier1/fmtstr.h ../../public/tier1/exprevaluator.h \
../../public/p4lib/ip4.h ../../public/tier1/utlstring.h \
../../public/appframework/iappsystem.h \
../../public/interfaces/interfaces.h scriptsource.h \
../../public/tier0/logging.h sys_utils.h \
../vpccrccheck/crccheck_shared.h ../../public/tier1/keyvalues.h \
../../public/tier1/exprevaluator.h generatordefinition.h \
ibasesolutiongenerator.h dependencies.h ibaseprojectgenerator.h

Binary file not shown.

View File

@ -0,0 +1,13 @@
obj/Linux/release/tier0/assert_dialog.d obj/Linux/release/tier0/assert_dialog.o: ../../tier0/assert_dialog.cpp \
../../public/tier0/platform.h ../../public/tier0/wchartypes.h \
../../public/tier0/valve_off.h ../../public/tier0/valve_on.h \
../../public/tier0/annotations.h ../../tier0/resource.h \
../../public/tier0/threadtools.h ../../public/tier0/dbg.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/icommandline.h \
../../public/tier0/memdbgon.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/tier0/memdbgoff.h

Binary file not shown.

View File

@ -0,0 +1,15 @@
obj/Linux/release/tier0/commandline.d obj/Linux/release/tier0/commandline.o: ../../tier0/commandline.cpp \
../../tier0/pch_tier0.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/dbg.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/validator.h \
../../public/tier0/valobject.h ../../public/tier0/fasttimer.h \
../../public/tier0/icommandline.h ../../tier0/tier0_strtools.h \
../../public/tier1/strtools.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/mem.h \
../../public/tier0/memvirt.h ../../public/tier0/memdbgoff.h

Binary file not shown.

View File

@ -0,0 +1,14 @@
obj/Linux/release/tier0/cpu.d obj/Linux/release/tier0/cpu.o: ../../tier0/cpu.cpp \
../../tier0/pch_tier0.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/dbg.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/validator.h \
../../public/tier0/valobject.h ../../public/tier0/fasttimer.h \
../../tier0/tier0_strtools.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/mem.h \
../../public/tier0/memvirt.h ../../public/tier0/memdbgoff.h

Binary file not shown.

View File

@ -0,0 +1,4 @@
obj/Linux/release/tier0/cpu_posix.d obj/Linux/release/tier0/cpu_posix.o: ../../tier0/cpu_posix.cpp \
../../public/tier0/platform.h ../../public/tier0/wchartypes.h \
../../public/tier0/valve_off.h ../../public/tier0/valve_on.h \
../../public/tier0/annotations.h

Binary file not shown.

View File

@ -0,0 +1,14 @@
obj/Linux/release/tier0/dbg.d obj/Linux/release/tier0/dbg.o: ../../tier0/dbg.cpp \
../../public/tier0/platform.h ../../public/tier0/wchartypes.h \
../../public/tier0/valve_off.h ../../public/tier0/valve_on.h \
../../public/tier0/annotations.h ../../public/tier0/minidump.h \
../../public/tier0/stacktools.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbg.h \
../../public/tier0/basetypes.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/threadtools.h \
../../public/tier0/icommandline.h ../../public/tier0/etwprof.h \
../../public/tier0/memdbgon.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/tier0/memdbgoff.h

Binary file not shown.

View File

@ -0,0 +1,11 @@
obj/Linux/release/tier0/fasttimer.d obj/Linux/release/tier0/fasttimer.o: ../../tier0/fasttimer.cpp \
../../tier0/pch_tier0.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/dbg.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/validator.h \
../../public/tier0/valobject.h ../../public/tier0/fasttimer.h

Binary file not shown.

View File

@ -0,0 +1,13 @@
obj/Linux/release/tier0/logging.d obj/Linux/release/tier0/logging.o: ../../tier0/logging.cpp \
../../tier0/pch_tier0.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/dbg.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/validator.h \
../../public/tier0/valobject.h ../../public/tier0/fasttimer.h \
../../public/tier0/logging.h ../../public/tier0/dbg.h \
../../public/tier0/threadtools.h ../../tier0/tier0_strtools.h

Binary file not shown.

View File

@ -0,0 +1,14 @@
obj/Linux/release/tier0/mem.d obj/Linux/release/tier0/mem.o: ../../tier0/mem.cpp \
../../tier0/pch_tier0.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/dbg.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/validator.h \
../../public/tier0/valobject.h ../../public/tier0/fasttimer.h \
../../public/tier0/mem.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/memvirt.h \
../../public/tier0/memdbgoff.h

Binary file not shown.

View File

@ -0,0 +1,13 @@
obj/Linux/release/tier0/mem_helpers.d obj/Linux/release/tier0/mem_helpers.o: ../../tier0/mem_helpers.cpp \
../../public/tier0/platform.h ../../public/tier0/wchartypes.h \
../../public/tier0/valve_off.h ../../public/tier0/valve_on.h \
../../public/tier0/annotations.h ../../public/tier0/icommandline.h \
../../public/tier0/dbg.h ../../public/tier0/basetypes.h \
../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../tier0/mem_helpers.h \
../../public/tier0/memdbgon.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/tier0/memdbgoff.h

Binary file not shown.

View File

@ -0,0 +1,15 @@
obj/Linux/release/tier0/memdbg.d obj/Linux/release/tier0/memdbg.o: ../../tier0/memdbg.cpp \
../../tier0/pch_tier0.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/dbg.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/validator.h \
../../public/tier0/valobject.h ../../public/tier0/fasttimer.h \
../../public/tier0/stackstats.h ../../public/tier0/stacktools.h \
../../public/tier0/threadtools.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../tier0/mem_helpers.h ../../tier0/mem_impl_type.h

Binary file not shown.

View File

@ -0,0 +1,18 @@
obj/Linux/release/tier0/memstd.d obj/Linux/release/tier0/memstd.o: ../../tier0/memstd.cpp \
../../public/tier0/platform.h ../../public/tier0/wchartypes.h \
../../public/tier0/valve_off.h ../../public/tier0/valve_on.h \
../../public/tier0/annotations.h ../../public/tier0/dbg.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/tier0/threadtools.h ../../tier0/mem_helpers.h \
../../tier0/memstd.h ../../tier0/pch_tier0.h \
../../public/tier0/dbgflag.h ../../public/tier0/validator.h \
../../public/tier0/valobject.h ../../public/tier0/fasttimer.h \
../../public/tier0/tslist.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/memdbgoff.h \
../../public/tier0/stacktools.h ../../public/tier0/minidump.h \
../../tier0/mem_impl_type.h

Binary file not shown.

View File

@ -0,0 +1,11 @@
obj/Linux/release/tier0/memvalidate.d obj/Linux/release/tier0/memvalidate.o: ../../tier0/memvalidate.cpp \
../../tier0/pch_tier0.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/dbg.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/validator.h \
../../public/tier0/valobject.h ../../public/tier0/fasttimer.h

Binary file not shown.

View File

@ -0,0 +1,14 @@
obj/Linux/release/tier0/minidump.d obj/Linux/release/tier0/minidump.o: ../../tier0/minidump.cpp \
../../tier0/pch_tier0.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/dbg.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/validator.h \
../../public/tier0/valobject.h ../../public/tier0/fasttimer.h \
../../public/tier0/minidump.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/mem.h \
../../public/tier0/memvirt.h ../../public/tier0/memdbgoff.h

Binary file not shown.

View File

@ -0,0 +1,11 @@
obj/Linux/release/tier0/pch_tier0.d obj/Linux/release/tier0/pch_tier0.o: ../../tier0/pch_tier0.cpp \
../../tier0/pch_tier0.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/dbg.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/validator.h \
../../public/tier0/valobject.h ../../public/tier0/fasttimer.h

Binary file not shown.

View File

@ -0,0 +1,13 @@
obj/Linux/release/tier0/platform_posix.d obj/Linux/release/tier0/platform_posix.o: ../../tier0/platform_posix.cpp \
../../tier0/pch_tier0.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/dbg.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/validator.h \
../../public/tier0/valobject.h ../../public/tier0/fasttimer.h \
../../public/tier0/memalloc.h ../../public/tier0/mem.h \
../../public/tier0/memvirt.h ../../public/tier0/threadtools.h

Binary file not shown.

View File

@ -0,0 +1,12 @@
obj/Linux/release/tier0/pme_posix.d obj/Linux/release/tier0/pme_posix.o: ../../tier0/pme_posix.cpp \
../../public/tier0/platform.h ../../public/tier0/wchartypes.h \
../../public/tier0/valve_off.h ../../public/tier0/valve_on.h \
../../public/tier0/annotations.h ../../public/tier0/vprof.h \
../../public/tier0/dbg.h ../../public/tier0/basetypes.h \
../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/fasttimer.h \
../../public/tier0/l2cache.h ../../public/tier0/threadtools.h \
../../public/tier0/vprof_sn.h

Binary file not shown.

View File

@ -0,0 +1,13 @@
obj/Linux/release/tier0/threadtools.d obj/Linux/release/tier0/threadtools.o: ../../tier0/threadtools.cpp \
../../public/tier0/platform.h ../../public/tier0/wchartypes.h \
../../public/tier0/valve_off.h ../../public/tier0/valve_on.h \
../../public/tier0/annotations.h ../../public/tier0/threadtools.h \
../../public/tier0/dbg.h ../../public/tier0/basetypes.h \
../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/mem.h \
../../public/tier0/memvirt.h ../../public/tier0/memdbgoff.h \
../../tier0/../public/tier0/threadtools.inl

Binary file not shown.

View File

@ -0,0 +1,12 @@
obj/Linux/release/tier0/tier0_strtools.d obj/Linux/release/tier0/tier0_strtools.o: ../../tier0/tier0_strtools.cpp \
../../tier0/pch_tier0.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/dbg.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/validator.h \
../../public/tier0/valobject.h ../../public/tier0/fasttimer.h \
../../tier0/tier0_strtools.h

Binary file not shown.

View File

@ -0,0 +1,36 @@
obj/Linux/release/tier0/valobject.d obj/Linux/release/tier0/valobject.o: ../../tier0/valobject.cpp \
../../tier0/pch_tier0.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/dbg.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/validator.h \
../../public/tier0/valobject.h ../../public/tier0/fasttimer.h \
../../public/vstdlib/pch_vstdlib.h ../../public/tier0/valobject.h \
../../public/vstdlib/vstdlib.h ../../public/tier1/strtools.h \
../../public/vstdlib/random.h ../../public/tier0/threadtools.h \
../../public/tier1/interface.h ../../public/tier1/keyvalues.h \
../../public/tier1/utlvector.h ../../public/tier1/utlmemory.h \
../../public/tier0/memalloc.h ../../public/tier0/mem.h \
../../public/tier0/memvirt.h ../../public/mathlib/mathlib.h \
../../public/mathlib/vector.h ../../public/mathlib/vector2d.h \
../../public/mathlib/math_pfns.h ../../public/mathlib/fltx4.h \
../../public/tier0/memdbgon.h ../../public/tier0/memalloc.h \
../../public/tier0/memdbgoff.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/exprevaluator.h ../../public/tier1/utlrbtree.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlvector.h \
../../public/tier1/utllinkedlist.h ../../public/tier1/utlmemory.h \
../../public/tier1/utlfixedmemory.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/utlmultilist.h ../../public/tier1/utllinkedlist.h \
../../public/tier1/utlsymbol.h ../../public/tier1/utlbuffer.h \
../../public/unitlib/unitlib.h ../../public/tier1/byteswap.h \
../../public/datamap.h ../../public/tier1/utlvector.h \
../../public/tier0/memdbgon.h ../../public/tier0/memdbgoff.h \
../../public/tier1/stringpool.h ../../public/tier1/utlrbtree.h \
../../public/tier1/utlbuffer.h ../../public/tier0/icommandline.h \
../../public/tier1/netadr.h ../../public/tier1/mempool.h \
../../public/tier0/tslist.h ../../public/tier1/utlstring.h \
../../public/tier1/utlmap.h

Binary file not shown.

View File

@ -0,0 +1,17 @@
obj/Linux/release/tier0/vprof.d obj/Linux/release/tier0/vprof.o: ../../tier0/vprof.cpp \
../../tier0/pch_tier0.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/dbg.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/validator.h \
../../public/tier0/valobject.h ../../public/tier0/fasttimer.h \
../../public/tier0/memalloc.h ../../public/tier0/mem.h \
../../public/tier0/memvirt.h ../../public/tier0/vprof.h \
../../public/tier0/l2cache.h ../../public/tier0/threadtools.h \
../../public/tier0/vprof_sn.h ../../public/tier1/strtools.h \
../../public/tier0/memdbgon.h ../../public/tier0/memalloc.h \
../../public/tier0/memdbgoff.h

Binary file not shown.

View File

@ -0,0 +1,14 @@
obj/Linux/release/tier0/win32consoleio.d obj/Linux/release/tier0/win32consoleio.o: ../../tier0/win32consoleio.cpp \
../../tier0/pch_tier0.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/dbg.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/validator.h \
../../public/tier0/valobject.h ../../public/tier0/fasttimer.h \
../../public/tier0/win32consoleio.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/mem.h \
../../public/tier0/memvirt.h ../../public/tier0/memdbgoff.h

Binary file not shown.

View File

@ -0,0 +1,9 @@
obj/Linux/release/tier1/characterset.d obj/Linux/release/tier1/characterset.o: ../../tier1/characterset.cpp \
../../public/tier1/characterset.h ../../public/tier0/memdbgon.h \
../../public/tier0/basetypes.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/tier0/memdbgoff.h

Binary file not shown.

View File

@ -0,0 +1,9 @@
obj/Linux/release/tier1/checksum_crc.d obj/Linux/release/tier1/checksum_crc.o: ../../tier1/checksum_crc.cpp \
../../public/tier0/platform.h ../../public/tier0/wchartypes.h \
../../public/tier0/valve_off.h ../../public/tier0/valve_on.h \
../../public/tier0/annotations.h ../../public/tier0/commonmacros.h \
../../public/tier1/checksum_crc.h ../../public/tier0/memdbgon.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/tier0/memdbgoff.h

Binary file not shown.

View File

@ -0,0 +1,14 @@
obj/Linux/release/tier1/checksum_md5.d obj/Linux/release/tier1/checksum_md5.o: ../../tier1/checksum_md5.cpp \
../../public/tier0/basetypes.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h \
../../public/tier0/commonmacros.h ../../public/tier1/checksum_md5.h \
../../public/tier1/strtools.h ../../public/tier0/basetypes.h \
../../public/tier0/dbg.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier0/memdbgon.h \
../../public/tier0/memalloc.h ../../public/tier0/mem.h \
../../public/tier0/memvirt.h ../../public/tier0/memdbgoff.h

Binary file not shown.

View File

@ -0,0 +1,29 @@
obj/Linux/release/tier1/convar.d obj/Linux/release/tier1/convar.o: ../../tier1/convar.cpp \
../../public/tier0/basetypes.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier1/convar.h \
../../public/tier0/dbg.h ../../public/tier0/basetypes.h \
../../public/tier0/dbgflag.h ../../public/tier0/logging.h \
../../public/color.h ../../public/tier0/basetypes.h \
../../public/tier0/icommandline.h ../../public/tier0/win32consoleio.h \
../../public/tier1/iconvar.h ../../public/tier1/strtools.h \
../../public/tier1/utlvector.h ../../public/tier0/threadtools.h \
../../public/tier1/utlmemory.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/mathlib/mathlib.h ../../public/mathlib/vector.h \
../../public/mathlib/vector2d.h ../../public/vstdlib/random.h \
../../public/vstdlib/vstdlib.h ../../public/tier1/interface.h \
../../public/mathlib/math_pfns.h ../../public/mathlib/fltx4.h \
../../public/tier0/memdbgon.h ../../public/tier0/memalloc.h \
../../public/tier0/memdbgoff.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/utlstring.h ../../public/icvar.h \
../../public/appframework/iappsystem.h \
../../public/interfaces/interfaces.h ../../public/tier1/iconvar.h \
../../public/tier1/utlvector.h ../../public/tier1/characterset.h \
../../public/tier1/utlbuffer.h ../../public/unitlib/unitlib.h \
../../public/tier1/byteswap.h ../../public/datamap.h \
../../public/tier0/memdbgon.h ../../public/tier0/memdbgoff.h \
../../public/tier1/tier1.h ../../public/appframework/iappsystem.h \
../../public/tier1/convar_serverbounded.h

Binary file not shown.

View File

@ -0,0 +1,24 @@
obj/Linux/release/tier1/exprevaluator.d obj/Linux/release/tier1/exprevaluator.o: ../../tier1/exprevaluator.cpp \
../../public/vstdlib/ikeyvaluessystem.h ../../public/vstdlib/vstdlib.h \
../../public/tier0/platform.h ../../public/tier0/wchartypes.h \
../../public/tier0/valve_off.h ../../public/tier0/valve_on.h \
../../public/tier0/annotations.h ../../public/tier1/exprevaluator.h \
../../public/tier1/convar.h ../../public/tier0/dbg.h \
../../public/tier0/basetypes.h ../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h ../../public/tier0/dbgflag.h \
../../public/tier0/logging.h ../../public/color.h \
../../public/tier0/basetypes.h ../../public/tier0/icommandline.h \
../../public/tier0/win32consoleio.h ../../public/tier1/iconvar.h \
../../public/tier1/strtools.h ../../public/tier1/utlvector.h \
../../public/tier0/threadtools.h ../../public/tier1/utlmemory.h \
../../public/tier0/memalloc.h ../../public/tier0/mem.h \
../../public/tier0/memvirt.h ../../public/mathlib/mathlib.h \
../../public/mathlib/vector.h ../../public/mathlib/vector2d.h \
../../public/vstdlib/random.h ../../public/tier1/interface.h \
../../public/mathlib/math_pfns.h ../../public/mathlib/fltx4.h \
../../public/tier0/memdbgon.h ../../public/tier0/memalloc.h \
../../public/tier0/memdbgoff.h ../../public/tier1/utlblockmemory.h \
../../public/tier1/utlstring.h ../../public/icvar.h \
../../public/appframework/iappsystem.h \
../../public/interfaces/interfaces.h ../../public/tier1/iconvar.h \
../../public/tier1/utlvector.h ../../public/tier1/fmtstr.h

Binary file not shown.

View File

@ -0,0 +1,13 @@
obj/Linux/release/tier1/generichash.d obj/Linux/release/tier1/generichash.o: ../../tier1/generichash.cpp \
../../public/tier0/basetypes.h ../../public/tier0/platform.h \
../../public/tier0/wchartypes.h ../../public/tier0/valve_off.h \
../../public/tier0/valve_on.h ../../public/tier0/annotations.h \
../../public/tier0/commonmacros.h \
../../public/tier0/xbox_codeline_defines.h \
../../public/tier1/generichash.h ../../public/tier0/dbg.h \
../../public/tier0/dbgflag.h ../../public/tier0/logging.h \
../../public/color.h ../../public/tier0/basetypes.h \
../../public/tier0/icommandline.h ../../public/tier0/win32consoleio.h \
../../public/tier0/memdbgon.h ../../public/tier0/memalloc.h \
../../public/tier0/mem.h ../../public/tier0/memvirt.h \
../../public/tier0/memdbgoff.h

Some files were not shown because too many files have changed in this diff Show More