-- [ Picked text/plain from multipart/alternative ] my makefile:
# the name of the mod binary (_i486.so is appended to the end) NAME=server # the location of the vcproj that builds the mod MOD_PROJ=../dlls/server_hl2mp-2003.vcproj # the name of the mod configuration (typically <proj name>_<build type><build target>) MOD_CONFIG=server_hl2mp_DebugHL2MPWin32 # the directory the base binaries (tier0_i486.so, etc) are located #GAME_DIR=../../ #GAME_DIR=~/valve/hl2bin/ GAME_DIR = /home/johnt/srcds # compiler options (gcc 3.4.1 or above is required) CC=/usr/bin/gcc-3.4 CPLUS=/usr/bin/g++-3.4 CLINK=/usr/bin/gcc-3.4 CPP_LIB="/usr/lib/gcc/i486-linux-gnu/3.4.5/libstdc++.a /usr/lib/gcc/i486-linux-gnu/3.4.5/libgcc_eh.a" #CC=/usr/bin/gcc #CPLUS=/usr/bin/g++ #CLINK=/usr/bin/gcc #CPP_LIB="/usr/lib/gcc/i486-linux-gnu/4.1.2/libstdc++.a /usr/lib/gcc/i486-linux-gnu/4.1.2/libgcc_eh.a" # put any compiler flags you want passed here USER_CFLAGS= # link flags for your mod, make sure to include any special libraries here LDFLAGS="-lm -ldl $(GAME_DIR)/bin/tier0_i486.so $(GAME_DIR)/bin/vstdlib_i486.so mathlib_i486.a choreoobjects_i486.a tier1_i486.a" # XERCES 2.6.0 or above ( http://xml.apache.org/xerces-c/ ) is used by the vcproj to makefile converter # it must be installed before being able to run this makefile #XERCES_INC_DIR=/home/alfred/tmp/xerces-c-src_2_6_0/include #XERCES_LIB_DIR=/home/alfred/tmp/xerces-c-src_2_6_0/lib # if you have xerces installed already you should be able to use the two lines below #XERCES_INC_DIR=/cygdrive/c/downloads/xerces-c-windows_2000-msvc_60/include #XERCES_LIB_DIR=/cygdrive/c/downloads/xerces-c-windows_2000-msvc_60/lib #/usr/lib XERCES_INC_DIR=/home/johnt/xerces/include XERCES_LIB_DIR=/home/johnt/xerces/lib -- _______________________________________________ To unsubscribe, edit your list preferences, or view the list archives, please visit: http://list.valvesoftware.com/mailman/listinfo/hlcoders

