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
356 B

  1. SQUIRREL= ..
  2. OUT= ./testSqPlus2
  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= testSqPlus2.cpp
  8. all: testSqPlus2
  9. FORCE: ;
  10. testSqPlus2: FORCE
  11. g++ -O3 -fno-rtti -Os -o $(OUT) $(SRCS) $(INCDIRS) $(LIBDIR) $(LIBS)