FreeCalypso > hg > themwi-system-sw
comparison utils/Makefile @ 4:4ad5deafaa87
themwi-update-numdb utility written, compiles
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Sun, 26 Jun 2022 11:39:14 -0800 |
| parents | |
| children | 030143a95fb5 |
comparison
equal
deleted
inserted
replaced
| 3:d712d518059e | 4:4ad5deafaa87 |
|---|---|
| 1 CC= gcc | |
| 2 CFLAGS= -O2 | |
| 3 PROGS= themwi-update-numdb | |
| 4 LIBUTIL=../libutil/libutil.a | |
| 5 INSTBIN=/usr/local/bin | |
| 6 | |
| 7 all: ${PROGS} | |
| 8 | |
| 9 themwi-update-numdb: themwi-update-numdb.o ${LIBUTIL} | |
| 10 ${CC} ${CFLAGS} -o $@ $@.o ${LIBUTIL} | |
| 11 | |
| 12 install: | |
| 13 install -c -o bin -g bin -m 755 ${PROGS} ${INSTBIN} | |
| 14 | |
| 15 clean: | |
| 16 rm -f *.o ${PROGS} errs |
