1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-03 14:34:32 +00:00

Finish matching ique-cn (#2451)

* git subrepo clone git@github.com:Thar0/com-plugin.git tools/com-plugin

subrepo:
  subdir:   "tools/com-plugin"
  merged:   "e8543312d"
upstream:
  origin:   "git@github.com:Thar0/com-plugin.git"
  branch:   "main"
  commit:   "e8543312d"
git-subrepo:
  version:  "0.4.6"
  origin:   "https://github.com/ingydotnet/git-subrepo"
  commit:   "110b9eb"

* ique-cn OK

* Review suggestions

* Most suggestions

* git subrepo pull tools/com-plugin

subrepo:
  subdir:   "tools/com-plugin"
  merged:   "81595ed1c"
upstream:
  origin:   "git@github.com:Thar0/com-plugin.git"
  branch:   "main"
  commit:   "81595ed1c"
git-subrepo:
  version:  "0.4.6"
  origin:   "https://github.com/ingydotnet/git-subrepo"
  commit:   "110b9eb"

* Fix other versions
This commit is contained in:
Tharo 2025-02-04 11:55:04 +00:00 committed by GitHub
parent 6c06168e72
commit c028db03b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
51 changed files with 5756 additions and 52 deletions

19
tools/com-plugin/Makefile Normal file
View file

@ -0,0 +1,19 @@
TARGET := common-plugin.so
SOURCES := plugin.c
CC := gcc
CFLAGS := -Wall -Wextra -std=gnu11 -O2 -fPIC -DHAVE_STDINT_H
DEP_FILES := $(TARGET:.so=.d)
.PHONY: all clean
all: $(TARGET)
clean:
$(RM) $(TARGET) $(DEP_FILES)
$(TARGET): $(SOURCES)
$(CC) -shared $(CFLAGS) -MMD -o $@ $^
-include $(DEP_FILES)