meta stuff
This commit is contained in:
parent
eea30d6b4a
commit
c76113e400
13
.gitignore
vendored
13
.gitignore
vendored
@ -21,6 +21,17 @@ __pycache__/
|
||||
*.ncb
|
||||
*.gch
|
||||
*.gch.stamp
|
||||
C_C++/sds/sds/
|
||||
# Java
|
||||
*.class
|
||||
*.jar
|
||||
# Haskell
|
||||
*.hi
|
||||
# Latex
|
||||
LaTeX/*.pdf
|
||||
LaTeX/*.synctex.gz
|
||||
LaTeX/*.aux
|
||||
LaTeX/*.log
|
||||
# Tooling
|
||||
*.gdb-*
|
||||
*.gdb_*
|
||||
@ -35,3 +46,5 @@ tmp-*
|
||||
*.swo
|
||||
*.swn
|
||||
*.opendb
|
||||
*.bin
|
||||
.do_ignore/
|
||||
|
9
Makefile
9
Makefile
@ -1,2 +1,11 @@
|
||||
main:
|
||||
@echo "available targets: clean batch_commit"
|
||||
|
||||
clean:
|
||||
-rm *.out
|
||||
|
||||
batch_commit:
|
||||
@for file in $(shell git ls-files --others --exclude-standard); do \
|
||||
git add $$file; \
|
||||
git commit -m "Added '$$file'"; \
|
||||
done
|
||||
|
Loading…
x
Reference in New Issue
Block a user