Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
489 B

  1. SQUIRREL= ..
  2. OUT= ./minimalSqPlus
  3. INCDIRS= -I$(SQUIRREL)/include -I. -I$(SQUIRREL)/sqlibs -I$(SQUIRREL)/sqplus
  4. LIBDIR= -L$(SQUIRREL)/lib
  5. #LIBS= -lsquirrel -lsqstdlib -lsqplus
  6. LIBS= -lsqplus -lsquirrel -lsqstdlib
  7. SRCS= minimalSqPlus.cpp
  8. all: minimalSqPlus
  9. FORCE: ;
  10. minimalSqPlus: FORCE
  11. # g++ -fno-rtti -o $(OUT) $(SRCS) $(INCDIRS) $(LIBDIR) $(LIBS)
  12. g++ -O3 -Wall -o $(OUT) $(SRCS) $(INCDIRS) $(LIBDIR) $(LIBS)
  13. #g++ -O3 -fno-rtti -Os -o $(OUT) $(SRCS) $(INCDIRS) $(LIBDIR) $(LIBS)