Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
yanfox777 authored Apr 14, 2023
1 parent 4ec430a commit f078ecb
Show file tree
Hide file tree
Showing 10 changed files with 1,394 additions and 0 deletions.
12 changes: 12 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
OUTFILE = "bin/DisableVehicleLimit.so"

COMPILE_FLAGS=-m32 -c -O2 -w
LINK_FLAGS=-m32 -shared -O3

all:
gcc $(COMPILE_FLAGS) src/SDK/amx/*.h
g++ $(COMPILE_FLAGS) -std=c++11 src/SDK/*.cpp
g++ $(COMPILE_FLAGS) -std=c++11 src/*.cpp
g++ $(LINK_FLAGS) -o $(OUTFILE) *.o
rm *.o
strip -s $(OUTFILE)
Loading

0 comments on commit f078ecb

Please sign in to comment.