FreeCalypso > hg > freecalypso-hwlab
changeset 1:2312f270fe62
ee2232-gen compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 05 Apr 2018 10:09:21 +0000 |
parents | be4cbc0efb7e |
children | 252e3d37b9e5 |
files | .hgignore ee2232/Makefile |
diffstat | 2 files changed, 21 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.hgignore Thu Apr 05 10:09:21 2018 +0000 @@ -0,0 +1,5 @@ +syntax: regexp + +\.[oa]$ + +^ee2232/ee2232-gen$
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ee2232/Makefile Thu Apr 05 10:09:21 2018 +0000 @@ -0,0 +1,16 @@ +CC= gcc +CFLAGS= -O2 +PROGS= ee2232-gen +INSTBIN=/opt/freecalypso/bin + +all: ${PROGS} + +ee2232-gen: ee2232-gen.c + ${CC} ${CFLAGS} -o $@ $@.c + +install: + mkdir -p ${INSTBIN} + install -c ${PROGS} ${INSTBIN} + +clean: + rm -f ${PROGS} *.o *errs *.out