first commit

Version 3.x.x
This commit is contained in:
VNGhostMans
2023-05-14 20:21:09 +07:00
parent a3037a8db3
commit 5ec92ee05e
1166 changed files with 1036539 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
OBJECTS:= $(addprefix $(TMP_DIR)/, $(SOURCES:.cc=.o))
clean:
-$(DEL_FILE) $(OBJECTS)
-$(DEL_FILE) $(PCH_CPP)
-$(DEL_FILE) $(BIN_TARGET)
$(BIN_TARGET): $(OBJECTS) $(BIN_DIR)/.sentinel $(OBJCOMP) $(DYLIBS)
$(LINK) $(LFLAGS) -o $(BIN_TARGET) $(OBJECTS) $(LIBS) $(OBJCOMP) $(DYLIBS)
$(TMP_DIR)/%.o: %.cc $(PCH_CPP) $(TMP_DIR)/%/../.sentinel
$(CXX) -c -include-pch $(PCH_CPP) $(CXXFLAGS) $(INCFLAGS) -o $(abspath $@) $(abspath $<)