Advertisement
BigETI

makefile - memory.so

Jul 17th, 2013
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.27 KB | None | 0 0
  1. GPP = g++
  2. GCC = gcc
  3. OUTPUT = "./memory.so"
  4. CC_PARAMS =-c -m32 -fPIC -O3 -w -DLINUX -I./SDK/amx/
  5.  
  6. all:
  7.     $(GCC) $(CC_PARAMS) ./SDK/amx/*.c
  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
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement