FreeCalypso > hg > themwi-system-sw
comparison 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 |
comparison
equal
deleted
inserted
replaced
5:9f1ce81522ea | 6:030143a95fb5 |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 | 2 CFLAGS= -O2 |
3 PROGS= themwi-update-numdb | 3 PROGS= themwi-dump-numdb themwi-update-numdb |
4 LIBUTIL=../libutil/libutil.a | 4 LIBUTIL=../libutil/libutil.a |
5 INSTBIN=/usr/local/bin | 5 INSTBIN=/usr/local/bin |
6 | 6 |
7 all: ${PROGS} | 7 all: ${PROGS} |
8 | |
9 themwi-dump-numdb: themwi-dump-numdb.c | |
10 ${CC} ${CFLAGS} -o $@ $@.c | |
8 | 11 |
9 themwi-update-numdb: themwi-update-numdb.o ${LIBUTIL} | 12 themwi-update-numdb: themwi-update-numdb.o ${LIBUTIL} |
10 ${CC} ${CFLAGS} -o $@ $@.o ${LIBUTIL} | 13 ${CC} ${CFLAGS} -o $@ $@.o ${LIBUTIL} |
11 | 14 |
12 install: | 15 install: |