topdir.mk: Add target gitignore #102
2 changed files with 55 additions and 12 deletions
.gitignore: Run make gitignore
All checks were successful
CI / Packaging - Kali Linux (pull_request) Successful in 4m19s
CI / Packaging - OpenSUSE Tumbleweed (pull_request) Successful in 4m50s
CI / Packaging test (pull_request) Successful in 0s
CI / Packaging - Kali Linux (push) Successful in 4m31s
CI / Packaging - OpenSUSE Tumbleweed (push) Successful in 4m37s
CI / Packaging test (push) Successful in 0s
All checks were successful
CI / Packaging - Kali Linux (pull_request) Successful in 4m19s
CI / Packaging - OpenSUSE Tumbleweed (pull_request) Successful in 4m50s
CI / Packaging test (pull_request) Successful in 0s
CI / Packaging - Kali Linux (push) Successful in 4m31s
CI / Packaging - OpenSUSE Tumbleweed (push) Successful in 4m37s
CI / Packaging test (push) Successful in 0s
Update .gitignore by running "make gitignore. Add a couple of jw-pkg- specific build-artifacts to GITIGNORE_PATTERNS_END before: .cache-projects.mk make/ssh-wrapper.sh Also cancel the automatic inclusion of file paths containing jw-pkg with an empty GITIGNORE_PATTERNS_TOP. Signed-off-by: Jan Lindemann <jan@janware.com>
commit
673953e56c
63
.gitignore
vendored
63
.gitignore
vendored
|
|
@ -1,16 +1,55 @@
|
||||||
dist
|
*.a
|
||||||
bin/*.sh
|
*.dep.mk
|
||||||
bin/*.py
|
|
||||||
*.done
|
|
||||||
*.dist
|
*.dist
|
||||||
|
*.done
|
||||||
|
*.jw-secret
|
||||||
|
*.jw-secret-file
|
||||||
|
*.ldscript
|
||||||
|
*.o
|
||||||
|
*.old
|
||||||
|
*.orig
|
||||||
*.out
|
*.out
|
||||||
test-out.txt
|
*.pc
|
||||||
make/.cache.mk
|
*.pyc
|
||||||
make/jw-pkg.pc
|
*.rep
|
||||||
minimal-to-master.sh
|
*.secret
|
||||||
pkg-build.dist
|
*.so
|
||||||
pkgconfig/
|
*.so.*
|
||||||
rebase.sh
|
*.swp
|
||||||
__pycache__
|
*_generated_*
|
||||||
|
*tmp*
|
||||||
|
*~
|
||||||
|
-test-out.txt
|
||||||
.cache-project.mk
|
.cache-project.mk
|
||||||
|
.exrc
|
||||||
|
.feedfs_history
|
||||||
|
.gdb_history
|
||||||
|
.jw-agit
|
||||||
|
.mypy_cache
|
||||||
|
.ruff_cache
|
||||||
|
__init__.py
|
||||||
|
__pycache__
|
||||||
|
bin/*.bat
|
||||||
|
bin/*.pl
|
||||||
|
bin/*.pm
|
||||||
|
bin/*.py
|
||||||
|
bin/*.sh
|
||||||
|
bin/*.tcl
|
||||||
|
conftest.py
|
||||||
|
core
|
||||||
|
dist
|
||||||
|
ld-*.conf
|
||||||
|
local.conf
|
||||||
|
local.mk
|
||||||
|
local.mk
|
||||||
|
local.yaml
|
||||||
|
make/*.pc
|
||||||
|
mkspec.sh
|
||||||
|
pr-descr*.txt
|
||||||
|
pre-local.mk
|
||||||
|
pyproject.toml
|
||||||
|
pyrightconfig.json
|
||||||
|
!*.jw-tmpl
|
||||||
|
!*.tmpl
|
||||||
.cache-projects.mk
|
.cache-projects.mk
|
||||||
|
make/ssh-wrapper.sh
|
||||||
|
|
|
||||||
4
Makefile
4
Makefile
|
|
@ -4,12 +4,16 @@ PKG_UPLOAD_URLPREFIX ?= rsync_ssh://$(JANWARE_USER)@pkg.janware.com:/srv/da
|
||||||
all:
|
all:
|
||||||
all: cache-projects
|
all: cache-projects
|
||||||
|
|
||||||
|
GITIGNORE_PATTERNS_TOP =
|
||||||
|
GITIGNORE_PATTERNS_END = .cache-projects.mk make/ssh-wrapper.sh
|
||||||
|
|
||||||
include $(TOPDIR)/make/proj.mk
|
include $(TOPDIR)/make/proj.mk
|
||||||
include $(JWBDIR)/make/topdir.mk
|
include $(JWBDIR)/make/topdir.mk
|
||||||
include $(JWBDIR)/make/srcdist.mk
|
include $(JWBDIR)/make/srcdist.mk
|
||||||
include $(JWBDIR)/make/git-cvs-bridge.mk
|
include $(JWBDIR)/make/git-cvs-bridge.mk
|
||||||
include $(JWBDIR)/make/py-topdir.mk
|
include $(JWBDIR)/make/py-topdir.mk
|
||||||
|
|
||||||
|
|
||||||
clean: clean.pkgconfig
|
clean: clean.pkgconfig
|
||||||
clean.pkgconfig:
|
clean.pkgconfig:
|
||||||
rm -rf pkgconfig
|
rm -rf pkgconfig
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue