view 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 source

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