mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2025-01-13 15:28:04 +03:00
Added makefile
This commit is contained in:
parent
82fed37247
commit
bdd740f8ab
22
installer/AMXXRelease/Makefile
Executable file
22
installer/AMXXRelease/Makefile
Executable file
@ -0,0 +1,22 @@
|
|||||||
|
#(C)2004-2005 AMX Mod X Development Team
|
||||||
|
# Makefile written by David "BAILOPAN" Anderson
|
||||||
|
|
||||||
|
### EDIT BELOW FOR OTHER PROJECTS ###
|
||||||
|
|
||||||
|
CS = mcs
|
||||||
|
NAME = amxxrelease
|
||||||
|
BINARY = $(NAME).bin
|
||||||
|
OUTPATH = /tmp/
|
||||||
|
|
||||||
|
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)
|
||||||
|
mcs $(OBJECTS) -o $(OUTPATH)/$(BINARY)
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf amxxrelease
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user