FreeCalypso > hg > ueda-linux
diff miscutil/Makefile @ 144:ffadaa339478
protel-parts-condense misc utility written
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 20 Sep 2020 02:40:23 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/miscutil/Makefile Sun Sep 20 02:40:23 2020 +0000 @@ -0,0 +1,17 @@ +CC= gcc +CFLAGS= -O2 +PROGS= protel-parts-condense +BINDIR= /usr/local/bin + +all: ${PROGS} + +${PROGS}: + ${CC} ${CFLAGS} -o $@ $@.c + +install: + install -c -o bin -g bin -m 755 ${PROGS} ${BINDIR} + +clean: + rm -f *.[ao] a.out core errs ${PROGS} + +protel-parts-condense: protel-parts-condense.c