FreeCalypso > hg > freecalypso-hwlab
comparison 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 |
comparison
equal
deleted
inserted
replaced
0:be4cbc0efb7e | 1:2312f270fe62 |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROGS= ee2232-gen | |
4 INSTBIN=/opt/freecalypso/bin | |
5 | |
6 all: ${PROGS} | |
7 | |
8 ee2232-gen: ee2232-gen.c | |
9 ${CC} ${CFLAGS} -o $@ $@.c | |
10 | |
11 install: | |
12 mkdir -p ${INSTBIN} | |
13 install -c ${PROGS} ${INSTBIN} | |
14 | |
15 clean: | |
16 rm -f ${PROGS} *.o *errs *.out |