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