mirror of
https://github.com/ditkrg/todo-to-issue-action.git
synced 2026-01-25 07:16:42 +00:00
Added support for makefile language.
Signed-off-by: Aingeru <aingeru.develop@gmail.com>
This commit is contained in:
@@ -416,4 +416,22 @@ index 0000000..a6c6cb0
|
||||
+ TODO fill this with something useful
|
||||
+ */
|
||||
+}
|
||||
+
|
||||
+
|
||||
diff --git a/tests/Makefile b/tests/Makefile
|
||||
new file mode 100644
|
||||
index 0000000..2996176
|
||||
--- /dev/null
|
||||
+++ b/tests/Makefile
|
||||
@@ -0,0 +1,12 @@
|
||||
+# TODO change name.
|
||||
+NAME = asm
|
||||
+
|
||||
+# TODO source files must be explicitly named.
|
||||
+SRC = $(shell find mandatory/src -name "*.asm")
|
||||
+OBJ = $(patsubst src/%.asm, obj/%.o, $(SRC))
|
||||
+.PHONY: all
|
||||
+all: $(NAME)
|
||||
+$(NAME): $(OBJ)
|
||||
+ # TODO create the directory.
|
||||
+ $(AR) rc $@ $(OBJ)
|
||||
+
|
||||
|
||||
Reference in New Issue
Block a user