-
Notifications
You must be signed in to change notification settings - Fork 801
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
94 changed files
with
2,673 additions
and
425 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.6.30 | ||
3.6.31 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.6.30 | ||
3.6.31 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
# GNU Make project makefile autogenerated by Premake | ||
ifndef config | ||
config=debugstatic32 | ||
endif | ||
|
||
ifndef verbose | ||
SILENT = @ | ||
endif | ||
|
||
CC = gcc | ||
CXX = g++ | ||
AR = ar | ||
|
||
ifndef RESCOMP | ||
ifdef WINDRES | ||
RESCOMP = $(WINDRES) | ||
else | ||
RESCOMP = windres | ||
endif | ||
endif | ||
|
||
ifeq ($(config),debugstatic32) | ||
OBJDIR = ../../intermediate/debugstatic/gmake/tutorial_12/x32 | ||
TARGETDIR = ../../bin | ||
TARGET = $(TARGETDIR)/tutorial_12_debugstatic_win32_gmake.exe | ||
DEFINES += -DWIN32 -D_DEBUG -DDEBUG | ||
INCLUDES += -I../../inc -I../../inc -ID:/include | ||
ALL_CPPFLAGS += $(CPPFLAGS) -MMD -MP $(DEFINES) $(INCLUDES) | ||
ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) $(ARCH) -g -Wall -Wextra -ffast-math -m32 -Wno-invalid-offsetof -Wno-array-bounds -Wno-unused-local-typedefs -Wno-maybe-uninitialized -finput-charset=UTF-8 | ||
ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CFLAGS) -fno-exceptions | ||
ALL_RESFLAGS += $(RESFLAGS) $(DEFINES) $(INCLUDES) | ||
ALL_LDFLAGS += $(LDFLAGS) -L../../lib -m32 -L/usr/lib32 | ||
LDDEPS += ../../lib/libbehaviac_debugstatic_win32_gmake.a | ||
LIBS += $(LDDEPS) | ||
LINKCMD = $(CXX) -o $(TARGET) $(OBJECTS) $(RESOURCES) $(ARCH) $(ALL_LDFLAGS) $(LIBS) | ||
define PREBUILDCMDS | ||
endef | ||
define PRELINKCMDS | ||
endef | ||
define POSTBUILDCMDS | ||
endef | ||
endif | ||
|
||
ifeq ($(config),releasestatic32) | ||
OBJDIR = ../../intermediate/releasestatic/gmake/tutorial_12/x32 | ||
TARGETDIR = ../../bin | ||
TARGET = $(TARGETDIR)/tutorial_12_releasestatic_win32_gmake.exe | ||
DEFINES += -DWIN32 -DNDEBUG -D_CONSOLE | ||
INCLUDES += -I../../inc -I../../inc -ID:/include | ||
ALL_CPPFLAGS += $(CPPFLAGS) -MMD -MP $(DEFINES) $(INCLUDES) | ||
ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) $(ARCH) -O2 -Wall -Wextra -ffast-math -m32 /Ox /Oi /Ob1 /Ot -Wno-invalid-offsetof -Wno-array-bounds -Wno-unused-local-typedefs -Wno-maybe-uninitialized -finput-charset=UTF-8 | ||
ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CFLAGS) -fno-exceptions | ||
ALL_RESFLAGS += $(RESFLAGS) $(DEFINES) $(INCLUDES) | ||
ALL_LDFLAGS += $(LDFLAGS) -L../../lib -s -m32 -L/usr/lib32 | ||
LDDEPS += ../../lib/libbehaviac_releasestatic_win32_gmake.a | ||
LIBS += $(LDDEPS) | ||
LINKCMD = $(CXX) -o $(TARGET) $(OBJECTS) $(RESOURCES) $(ARCH) $(ALL_LDFLAGS) $(LIBS) | ||
define PREBUILDCMDS | ||
endef | ||
define PRELINKCMDS | ||
endef | ||
define POSTBUILDCMDS | ||
endef | ||
endif | ||
|
||
OBJECTS := \ | ||
$(OBJDIR)/tutorial_12.o \ | ||
$(OBJDIR)/behaviac_agent_meta.o \ | ||
$(OBJDIR)/FirstAgent.o \ | ||
|
||
RESOURCES := \ | ||
|
||
SHELLTYPE := msdos | ||
ifeq (,$(ComSpec)$(COMSPEC)) | ||
SHELLTYPE := posix | ||
endif | ||
ifeq (/bin,$(findstring /bin,$(SHELL))) | ||
SHELLTYPE := posix | ||
endif | ||
|
||
.PHONY: clean prebuild prelink | ||
|
||
all: $(TARGETDIR) $(OBJDIR) prebuild prelink $(TARGET) | ||
@: | ||
|
||
$(TARGET): $(GCH) $(OBJECTS) $(LDDEPS) $(RESOURCES) | ||
@echo Linking tutorial_12 | ||
$(SILENT) $(LINKCMD) | ||
$(POSTBUILDCMDS) | ||
|
||
$(TARGETDIR): | ||
@echo Creating $(TARGETDIR) | ||
ifeq (posix,$(SHELLTYPE)) | ||
$(SILENT) mkdir -p $(TARGETDIR) | ||
else | ||
$(SILENT) mkdir $(subst /,\\,$(TARGETDIR)) | ||
endif | ||
|
||
$(OBJDIR): | ||
@echo Creating $(OBJDIR) | ||
ifeq (posix,$(SHELLTYPE)) | ||
$(SILENT) mkdir -p $(OBJDIR) | ||
else | ||
$(SILENT) mkdir $(subst /,\\,$(OBJDIR)) | ||
endif | ||
|
||
clean: | ||
@echo Cleaning tutorial_12 | ||
ifeq (posix,$(SHELLTYPE)) | ||
$(SILENT) rm -f $(TARGET) | ||
$(SILENT) rm -rf $(OBJDIR) | ||
else | ||
$(SILENT) if exist $(subst /,\\,$(TARGET)) del $(subst /,\\,$(TARGET)) | ||
$(SILENT) if exist $(subst /,\\,$(OBJDIR)) rmdir /s /q $(subst /,\\,$(OBJDIR)) | ||
endif | ||
|
||
prebuild: | ||
$(PREBUILDCMDS) | ||
|
||
prelink: | ||
$(PRELINKCMDS) | ||
|
||
ifneq (,$(PCH)) | ||
.NOTPARALLEL: $(GCH) $(PCH) | ||
$(GCH): $(PCH) | ||
@echo $(notdir $<) | ||
$(SILENT) $(CXX) -x c++-header $(ALL_CXXFLAGS) -MMD -MP $(DEFINES) $(INCLUDES) -o "$@" -MF "$(@:%.gch=%.d)" -c "$<" | ||
endif | ||
|
||
$(OBJDIR)/tutorial_12.o: ../../tutorials/tutorial_12/cpp/tutorial_12.cpp | ||
@echo $(notdir $<) | ||
$(SILENT) $(CXX) $(ALL_CXXFLAGS) $(FORCE_INCLUDE) -o "$@" -MF $(@:%.o=%.d) -c "$<" | ||
|
||
$(OBJDIR)/behaviac_agent_meta.o: ../../tutorials/tutorial_12/cpp/behaviac_generated/types/internal/behaviac_agent_meta.cpp | ||
@echo $(notdir $<) | ||
$(SILENT) $(CXX) $(ALL_CXXFLAGS) $(FORCE_INCLUDE) -o "$@" -MF $(@:%.o=%.d) -c "$<" | ||
|
||
$(OBJDIR)/FirstAgent.o: ../../tutorials/tutorial_12/cpp/behaviac_generated/types/internal/FirstAgent.cpp | ||
@echo $(notdir $<) | ||
$(SILENT) $(CXX) $(ALL_CXXFLAGS) $(FORCE_INCLUDE) -o "$@" -MF $(@:%.o=%.d) -c "$<" | ||
|
||
-include $(OBJECTS:%.o=%.d) | ||
ifneq (,$(PCH)) | ||
-include $(OBJDIR)/$(notdir $(PCH)).d | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.