FreeCalypso > hg > themwi-system-sw
diff utils/Makefile @ 6:030143a95fb5
themwi-dump-numdb utility written, compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 26 Jun 2022 12:17:36 -0800 |
parents | 4ad5deafaa87 |
children | 26b98505684e |
line wrap: on
line diff
--- a/utils/Makefile Sun Jun 26 11:40:47 2022 -0800 +++ b/utils/Makefile Sun Jun 26 12:17:36 2022 -0800 @@ -1,11 +1,14 @@ CC= gcc CFLAGS= -O2 -PROGS= themwi-update-numdb +PROGS= themwi-dump-numdb themwi-update-numdb LIBUTIL=../libutil/libutil.a INSTBIN=/usr/local/bin all: ${PROGS} +themwi-dump-numdb: themwi-dump-numdb.c + ${CC} ${CFLAGS} -o $@ $@.c + themwi-update-numdb: themwi-update-numdb.o ${LIBUTIL} ${CC} ${CFLAGS} -o $@ $@.o ${LIBUTIL}