Also did the following: * Removed -fPIC from all Linux makefiles * AMXX build tool now also moved over to VS 2005 * AMXX build tool binary renamed from "AMXXRelease" to "builder" * MSVC project files now can use environment variables to point to the paths of the Metamod headers and HL SDK: $(METAMOD) and $(HLSDK) respectively
		
			
				
	
	
		
			21 lines
		
	
	
		
			434 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			434 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
#(C)2004-2008 AMX Mod X Development Team
 | 
						|
# Makefile written by David "BAILOPAN" Anderson
 | 
						|
 | 
						|
### EDIT BELOW FOR OTHER PROJECTS ###
 | 
						|
 | 
						|
CS = gmcs
 | 
						|
NAME = builder
 | 
						|
BINARY = $(NAME).exe
 | 
						|
 | 
						|
OBJECTS = Main.cs Config.cs ABuilder.cs AMod.cs Build.cs Win32Builder.cs LinuxBuilder.cs \
 | 
						|
	CoreMod.cs ModDoD.cs ModEsf.cs ModCstrike.cs ModTFC.cs \
 | 
						|
	ModTs.cs ModNs.cs
 | 
						|
 | 
						|
default: all
 | 
						|
 | 
						|
all:	$(OBJECTS)
 | 
						|
	$(CS) $(OBJECTS) -out:$(BINARY)
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -rf $(BINARY)
 |