Major enhancements to the state web server. Added state-based shader instancing to avoid recompiles. Fixed issue #113 - Possible bug with REGAL_STATISTICS Corrected handling of GL_POINT_SIZE_MAX state in RegalState. Refreshed apitrace, civetweb, libpng, and GLEW from upstream.
36 lines
843 B
Makefile
36 lines
843 B
Makefile
|
|
all: alphatorus
|
|
|
|
clean:
|
|
rm -f alphatorus
|
|
rm -rf obj
|
|
|
|
REGAL_DIR := ../../../../regal
|
|
REGAL_SRC := $(wildcard $(REGAL_DIR)/gen/*.cpp $(REGAL_DIR)/src/*.cpp)
|
|
REGAL_INC := $(REGAL_DIR)/gen $(REGAL_DIR)/src
|
|
|
|
SHARED_DIR := ../src
|
|
SHARED_SRC := $(wildcard $(SHARED_DIR)/*.cpp)
|
|
SHARED_INC := $(SHARED_DIR)
|
|
|
|
LOCAL_SRC := $(wildcard *.cpp)
|
|
|
|
MY_SRC := $(REGAL_SRC) $(LOCAL_SRC) $(SHARED_SRC)
|
|
MY_SRC_DIRS := $(sort $(dir $(MY_SRC)))
|
|
|
|
MY_OBJ := $(MY_SRC)
|
|
MY_OBJ := $(patsubst %.cpp, obj$(CURDIR)/%.o, $(MY_OBJ))
|
|
MY_OBJ := $(patsubst %.c, obj$(CURDIR)/%.o, $(MY_OBJ))
|
|
MY_OBJ_DIRS := $(sort $(dir $(MY_OBJ)))
|
|
|
|
MY_INC := $(REGAL_INC) $(SHARED_INC)
|
|
MY_CMD_INC := $(patsubst %, -I %, $(MY_INC))
|
|
|
|
obj$(CURDIR)/%.o: %.cpp
|
|
@mkdir -p $(dir $@)
|
|
g++ -g -c -o $@ $(MY_CMD_INC) $<
|
|
@echo $@ ---- $<
|
|
|
|
alphatorus: $(MY_OBJ)
|
|
g++ -g -o $@ $(MY_OBJ) -lX11 -lpthread
|
|
|