.gitignore: make room for private stuff.

These files for local configurations tend to pile up and having
them just lying around clutters a 'git status'. Putting them
into private/ makes them invisible for Git now.

As we're on the topic, I use such Makefile targets for my printers:

sells: private/config.sells.h
sells: private/board.sells.h private/printer.sells.h
	@echo "Compiling and uploading for the Sells Mendel."
	$(MAKE) -f Makefile-AVR USER_CONFIG=private/config.sells.h \
	  MCU=atmega1284p F_CPU=20000000UL all
	avrdude -s -V -c stk500v2 -b 115200 -p $(MCU) -P /dev/ttyUSB0 \
	        -U flash:w:$(PROGRAM).hex
This commit is contained in:
Markus Hitter 2015-08-04 13:48:30 +02:00
parent eb166ce3ef
commit 7c8f1cec87
1 changed files with 1 additions and 0 deletions

1
.gitignore vendored
View File

@ -3,6 +3,7 @@
build
*~
private/
temporal.png
temporal_data
config.h