FreeCalypso > hg > themwi-system-sw
view rtp-mgr/Makefile @ 269:ff1ed366c84d
doc/Number-database: first draft written
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 26 Nov 2023 14:51:22 -0800 |
parents | cdc807117841 |
children |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROG= themwi-rtp-mgr OBJS= alloc.o ctrl_prot.o ctrl_sock.o main.o readconf.o LIBS= ../libutil/libutil.a INSTBIN=/opt/themwi/bin all: ${PROG} ${PROG}: ${OBJS} ${LIBS} ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} install: install -c -m 755 ${PROG} ${INSTBIN} clean: rm -f *.o ${PROG} errs