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.

16 lines
376 B

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