comparison ffstools/newcomp/Makefile @ 753:cae22bec3cba

compile-fc-batt2 utility written, compiles
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 05 Nov 2020 22:07:13 +0000
parents f19c347d0a80
children
comparison
equal deleted inserted replaced
752:c79aaed75bd8 753:cae22bec3cba
1 CC= gcc 1 CC= gcc
2 CFLAGS= -O2 2 CFLAGS= -O2
3 PROGS= compile-fc-batt compile-fc-chg tiffs-mkfile 3 PROGS= compile-fc-batt compile-fc-batt2 compile-fc-chg tiffs-mkfile
4 4
5 INSTALL_PREFIX= /opt/freecalypso 5 INSTALL_PREFIX= /opt/freecalypso
6 6
7 INSTBIN=${INSTALL_PREFIX}/bin 7 INSTBIN=${INSTALL_PREFIX}/bin
8 8
9 all: ${PROGS} 9 all: ${PROGS}
10 10
11 compile-fc-batt: compile-fc-batt.c 11 compile-fc-batt: compile-fc-batt.c
12 ${CC} ${CFLAGS} -o $@ $@.c
13
14 compile-fc-batt2: compile-fc-batt2.c
12 ${CC} ${CFLAGS} -o $@ $@.c 15 ${CC} ${CFLAGS} -o $@ $@.c
13 16
14 compile-fc-chg: compile-fc-chg.c 17 compile-fc-chg: compile-fc-chg.c
15 ${CC} ${CFLAGS} -o $@ $@.c 18 ${CC} ${CFLAGS} -o $@ $@.c
16 19