FreeCalypso > hg > themwi-system-sw
view utils/Makefile @ 13:26b98505684e
themwi-check-own utility written, compiles
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Sun, 26 Jun 2022 14:17:26 -0800 |
| parents | 030143a95fb5 |
| children | aea422af79dd |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= themwi-check-own themwi-dump-numdb themwi-update-numdb LIBNUMDB=../libnumdb/libnumdb.a LIBUTIL=../libutil/libutil.a INSTBIN=/usr/local/bin all: ${PROGS} themwi-check-own: themwi-check-own.o ${LIBNUMDB} ${LIBUTIL} ${CC} ${CFLAGS} -o $@ $@.o ${LIBNUMDB} ${LIBUTIL} themwi-dump-numdb: themwi-dump-numdb.c ${CC} ${CFLAGS} -o $@ $@.c themwi-update-numdb: themwi-update-numdb.o ${LIBUTIL} ${CC} ${CFLAGS} -o $@ $@.o ${LIBUTIL} install: install -c -o bin -g bin -m 755 ${PROGS} ${INSTBIN} clean: rm -f *.o ${PROGS} errs
