FreeCalypso > hg > freecalypso-hwlab
diff ee2232/Makefile @ 1:2312f270fe62
ee2232-gen compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 05 Apr 2018 10:09:21 +0000 |
parents | |
children | ef43bbfa8d16 |
line wrap: on
line diff
--- /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