Commit bba193cf712dc27e9d4f220fb69c6d34a1b7107d

Authored by Stéphane Raimbault
1 parent c2cef2dc

Update .gitignore

Showing 1 changed file with 14 additions and 3 deletions
.gitignore
  1 +# Temporary files
1 2 *~
2 3 *.swp
3 4 *.o
... ... @@ -7,10 +8,15 @@
7 8 *.trs
8 9 .deps
9 10 .libs
  11 +.DS_Store
  12 +
  13 +# Emacs
10 14 GPATH
11 15 GRTAGS
12 16 GSYMS
13 17 GTAGS
  18 +
  19 +# Generated by Autotools
14 20 INSTALL
15 21 Makefile
16 22 Makefile.in
... ... @@ -27,20 +33,25 @@ Makefile.in
27 33 /missing
28 34 /libmodbus.pc
29 35 /stamp-h1
30   -/*.sublime-*
31   -/.vscode
32 36 src/modbus-version.h
33 37 src/win32/modbus.dll.manifest
  38 +tests/unit-test.h
  39 +
  40 +/*.sublime-*
  41 +/.vscode
  42 +
  43 +# Binary
34 44 tests/bandwidth-client
35 45 tests/bandwidth-server-many-up
36 46 tests/bandwidth-server-one
37 47 tests/random-test-client
38 48 tests/random-test-server
39 49 tests/unit-test-client
40   -tests/unit-test.h
41 50 tests/unit-test-server
42 51 tests/version
43 52 tests/stamp-h2
  53 +
  54 +# Documentation
44 55 doc/*.html
45 56 doc/*.3
46 57 doc/*.7
... ...