remove a lot of the OG extra content and similar references

these are things that are not included in my version because they're
homebrew, because they are a lot of writing/creativity that I don't feel
comfortable stealing/distributing, are resources I'm not distributing,
or so on. this includes ideas that I like, but either plan to write my
own way in the future, or again I just don't feel comfortable copying
verbatim, especially if, for instance, I have my own process and don't
need to advocate for a different one
This commit is contained in:
2025-07-19 19:46:06 -05:00
parent aa38c90e35
commit c781385a3b
36 changed files with 6098 additions and 0 deletions

View File

@@ -11,6 +11,10 @@ BASE_PATCH_DIR := ./patches/base
BASE_PATCHES := $(wildcard $(BASE_PATCH_DIR)/*.patch)
BASE_PATCHES_OUT := $(subst $(BASE_PATCH_DIR),$(TMPDIR),$(BASE_PATCHES))
DE_OGCSRD_PATCH_DIR := ./patches/de-ogcsrd
DE_OGCSRD_PATCHES := $(wildcard $(DE_OGCSRD_PATCH_DIR)/*.patch)
DE_OGCSRD_PATCHES_OUT := $(subst $(DE_OGCSRD_PATCH_DIR),$(TMPDIR),$(DE_OGCSRD_PATCHES))
# DEFAULT BUILD
all: base
@@ -18,6 +22,7 @@ all: base
# CCSRD VERSIONS
base: $(CCSRD) $(BASE_PATCHES_OUT)
de_ogcsrd: base $(DE_OGCSRD_PATCHES_OUT)
# CLEANUPS
@@ -35,6 +40,11 @@ $(TMPDIR)/%.patch: $(BASE_PATCH_DIR)/%.patch
@patch $(CCSRD) $< --quiet
@touch $@
$(TMPDIR)/%.patch: $(DE_OGCSRD_PATCH_DIR)/%.patch
$(info >>> BASE '$<')
@patch $(CCSRD) $< --quiet
@touch $@
# OUTPUTS
web: $(CCSRD)