gitignore and Makefile

- Add gitignore
- Update makefile to remove config.h on clean
This commit is contained in:
Sravan Balaji 2020-12-11 10:10:49 -05:00
parent 35633d4567
commit 83262aceaf
2 changed files with 6 additions and 1 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
# Slock Files
*.o
*.orig
slock
config.h

View File

@ -30,7 +30,7 @@ slock: ${OBJ}
clean:
@echo cleaning
@rm -f slock ${OBJ} slock-${VERSION}.tar.gz
@rm -f slock ${OBJ} slock-${VERSION}.tar.gz config.h
dist: clean
@echo creating dist tarball