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
16 lines
356 B
SQUIRREL= ..
|
|
|
|
OUT= ./testSqPlus2
|
|
INCDIRS= -I$(SQUIRREL)/include -I. -I$(SQUIRREL)/sqlibs -I$(SQUIRREL)/sqplus
|
|
LIBDIR= -L$(SQUIRREL)/lib
|
|
#LIBS= -lsquirrel -lsqstdlib -lsqplus
|
|
LIBS= -lsqplus -lsquirrel -lsqstdlib
|
|
|
|
SRCS= testSqPlus2.cpp
|
|
|
|
all: testSqPlus2
|
|
|
|
FORCE: ;
|
|
|
|
testSqPlus2: FORCE
|
|
g++ -O3 -fno-rtti -Os -o $(OUT) $(SRCS) $(INCDIRS) $(LIBDIR) $(LIBS)
|