FreeCalypso > hg > themwi-rtp-mgr
comparison rtp-mgr/Makefile @ 2:247f4bbde24c
rtp-mgr: daemon ported over
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Mon, 27 May 2024 19:42:19 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 1:560a3765ab30 | 2:247f4bbde24c |
|---|---|
| 1 CPPFLAGS=-I../build-inc | |
| 2 PROG= themwi-rtp-mgr | |
| 3 OBJS= alloc.o ctrl_prot.o ctrl_sock.o main.o readconf.o sockinit.o | |
| 4 | |
| 5 include ../config.defs | |
| 6 | |
| 7 all: ${PROG} | |
| 8 | |
| 9 ${PROG}: ${OBJS} | |
| 10 ${CC} -o $@ ${OBJS} | |
| 11 | |
| 12 install: | |
| 13 mkdir -p ${DESTDIR}${bindir} | |
| 14 install -c -m 755 ${PROG} ${DESTDIR}${bindir} | |
| 15 | |
| 16 clean: | |
| 17 rm -f *.o ${PROG} errs |
