Skip to content

Commit 69f0e91

Browse files
author
Burak
authored
Add files via upload
1 parent f8a32b5 commit 69f0e91

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
GPP = g++
2+
GCC = gcc
3+
OUTPUT = "TextdrawStreamer.so"
4+
CC_PARAMS = -std=c++11 -c -m32 -fPIC -O3 -w -DLINUX -I ./SDK/amx/
5+
6+
all:
7+
$(GCC) $(CC_PARAMS) ./SDK/amx/*.h
8+
$(GPP) $(CC_PARAMS) ./SDK/*.cpp
9+
$(GPP) $(CC_PARAMS) ./*.cpp
10+
$(GPP) -m32 -O2 -fshort-wchar -shared -o $(OUTPUT) *.o
11+
-rm -f *.o

0 commit comments

Comments
 (0)