FreeCalypso > hg > themwi-system-sw
diff utils/Makefile @ 14:aea422af79dd
themwi-short-dial utility written, compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 26 Jun 2022 14:42:33 -0800 |
parents | 26b98505684e |
children | 4e0a73be9e37 |
line wrap: on
line diff
--- a/utils/Makefile Sun Jun 26 14:17:26 2022 -0800 +++ b/utils/Makefile Sun Jun 26 14:42:33 2022 -0800 @@ -1,6 +1,6 @@ CC= gcc CFLAGS= -O2 -PROGS= themwi-check-own themwi-dump-numdb themwi-update-numdb +PROGS= themwi-check-own themwi-dump-numdb themwi-short-dial themwi-update-numdb LIBNUMDB=../libnumdb/libnumdb.a LIBUTIL=../libutil/libutil.a INSTBIN=/usr/local/bin @@ -13,6 +13,9 @@ themwi-dump-numdb: themwi-dump-numdb.c ${CC} ${CFLAGS} -o $@ $@.c +themwi-short-dial: themwi-short-dial.o ${LIBNUMDB} ${LIBUTIL} + ${CC} ${CFLAGS} -o $@ $@.o ${LIBNUMDB} ${LIBUTIL} + themwi-update-numdb: themwi-update-numdb.o ${LIBUTIL} ${CC} ${CFLAGS} -o $@ $@.o ${LIBUTIL}