mirror of
https://github.com/alliedmodders/sourcemod.git
synced 2025-12-09 19:38:34 +00:00
16 lines
262 B
Makefile
16 lines
262 B
Makefile
CS = /usr/mono/bin/mcs
|
|
NAME = builder
|
|
BINARY = $(NAME).exe
|
|
|
|
OBJECTS = ABuilder.cs AssemblyInfo.cs Config.cs LinuxBuilder.cs Win32Builder.cs \
|
|
Package.cs PkgCore.cs Main.cs
|
|
|
|
default: all
|
|
|
|
all: $(OBJECTS)
|
|
$(CS) $(OBJECTS) -o $(BINARY)
|
|
|
|
clean:
|
|
rm -rf $(BINARY)
|
|
|