Skip to content

Commit

Permalink
Remove codeql.yml, .gitignore and Makefile
Browse files Browse the repository at this point in the history
The reason it [codeql.yml] was removed before is that GitHub does not
support shell scripts. As such I have added codeql.yml to .gitignore.
The test.yml file will have to suffice.

The Makefile rules were reordered a bit and missing targets in .PHONY
were added (and also reordered).
  • Loading branch information
xexyl committed Nov 2, 2024
1 parent 321092a commit c2345a1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 57 deletions.
54 changes: 0 additions & 54 deletions .github/workflows/codeql.yml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
*.bak
*.bku
.*.sw[a-z]
/.github/workflows/codeql.yml
readme.html
README.html
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ RM_V=
all:
@:

.PHONY: all clean clobber install uninstall test check_man
.PHONY: all clean clobber install uninstall shellcheck check_man test

clean:
@:
Expand Down Expand Up @@ -120,8 +120,6 @@ shellcheck: ${SGIT} .shellcheckrc
@echo
@echo "${OUR_NAME}: make $@ ending"

test: check_man shellcheck
@:

check_man: ${ALL_MAN_TARGETS}
@echo
Expand All @@ -142,3 +140,6 @@ check_man: ${ALL_MAN_TARGETS}
fi
@echo
@echo "${OUR_NAME}: make $@ ending"

test: shellcheck check_man
@:

0 comments on commit c2345a1

Please sign in to comment.