diff options
| author | Brad Luyster <BradLuyster@gmail.com> | 2012-09-07 21:51:38 -0400 |
|---|---|---|
| committer | Brad Luyster <BradLuyster@gmail.com> | 2012-09-07 21:51:38 -0400 |
| commit | e3bbc9ffd7b28dfe75841545e160b66162e46c62 (patch) | |
| tree | 94f5fd02ba675313185776046d18ea1d02160e3b | |
| parent | 0a326d6219945b5e55f0c0ff6f3abb9e63dbaaa5 (diff) | |
Added Github Readme and gitignore
| -rw-r--r-- | .gitignore | 17 | ||||
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | README.md | 22 |
3 files changed, 40 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8555563 --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +# Object files +*.o + +# Libraries +*.lib +*.a + +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib + +# Executables +*.exe +*.out +*.app
\ No newline at end of file @@ -27,7 +27,7 @@ lpcterm.o: lpcterm.c $(GLOBAL_DEP) $(CC) $(CDEBUG) $(CFLAGS) -c -o lpcterm.o lpcterm.c lpc21isp: lpc21isp.c adprog.o lpcprog.o lpcterm.o $(GLOBAL_DEP) - $(CC) $(CDEBUG) $(CFLAGS) -o lpc21isp lpc21isp.c adprog.o lpcprog.o lpcterm.o + $(CC) $(CDEBUG) $(CFLAGS) -o lpc21isp.out lpc21isp.c adprog.o lpcprog.o lpcterm.o clean: $(RM) adprog.o lpcprog.o lpcterm.o lpc21isp diff --git a/README.md b/README.md new file mode 100644 index 0000000..dbd26fc --- /dev/null +++ b/README.md @@ -0,0 +1,22 @@ +lpc21isp +======== + +Originally written by Martin Maurer +Modified by Brad Luyster (BradLuyster@gmail.com) to add support for the LPC1114FN28 processor + +Licensure +--------- + +lpc21isp is free software: you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as published by +the Free Software Foundation, either version 3 of the License, or +any later version. + +lpc21isp is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public License +and GNU General Public License along with lpc21isp. +If not, see <http://www.gnu.org/licenses/>.
\ No newline at end of file |
