Initial commit

This commit is contained in:
Eagle517
2026-01-14 10:27:57 -06:00
commit c1576fee30
11290 changed files with 1552799 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
.SUFFIXES:
.SUFFIXES: $(O) $(EXE) $(DLL) .S .c .cc .h .asm .ash .y .cpp
DIR.LIST=$(DIR.OBJ)/ $(addprefix $(DIR.OBJ)/, $(sort $(dir $(SOURCE.ALL))))
LINK.SOURCES=$(filter %$(O),$^)
LINK.RESOURCES=$(filter %.res,$^)
LINK.DEFS=$(filter %.def,$^)
.PHONY: dirlist
#vpath %$(O) $(DIR.OBJ)
$(DIR.OBJ)/%$O : %.cpp
$(DO.COMPILE.CC)
$(DIR.OBJ)/%$O : %.cc
$(DO.COMPILE.CC)
$(DIR.OBJ)/%$O : %.c
@$(DO.COMPILE.C)
$(DIR.OBJ)/%$O : %.asm
@$(DO.COMPILE.ASM)
$(DIR.OBJ)/%.res : %.rc
@$(DO.COMPILE.RC)
dirlist: $(DIR.LIST)
$(DIR.LIST):
@$(if $(wildcard $@),, $(MKDIR))
clean: $(targetsclean)
$(RMDIR) $(DIR.OBJ)/