12 lines
221 B
Makefile
12 lines
221 B
Makefile
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
|