FreeCalypso > hg > themwi-system-sw
view rtp-mgr/Makefile @ 273:80a248def208
doc/Fake-NANP-numbers: article written
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 27 Nov 2023 21:45:05 -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