Whoa, amb1941: All of AMX Mod X is now officially moved over to Visual Studio 2005 (MSVC 8)
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
This commit is contained in:
20
installer/builder/Makefile
Executable file
20
installer/builder/Makefile
Executable file
@ -0,0 +1,20 @@
|
||||
#(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)
|
Reference in New Issue
Block a user