view ringtools/Makefile @ 33:cefdc6623322

fc-e1gen utility written, compiles
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 25 Oct 2016 06:49:27 +0000
parents
children 2bbd9a389ca0
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	fc-e1gen
INSTBIN=/usr/local/bin

all:	${PROGS}

fc-e1gen:	fc-e1gen.c
	${CC} ${CFLAGS} -o $@ $@.c

install:
	mkdir -p ${INSTBIN}
	install -c ${PROGS} ${INSTBIN}

clean:
	rm -f ${PROGS} *.o *errs *.out