-
Christian Dietrich authored
Article: https://ibr.cs.tu-bs.de/advent/12-postbox/ Workload: ~74 source-code lines
Christian Dietrich authoredArticle: https://ibr.cs.tu-bs.de/advent/12-postbox/ Workload: ~74 source-code lines
Makefile 190 B
PROG = postbox
DEPS = postbox.c fifo.c domain.c
${PROG}: ${DEPS}
gcc ${PROG}.c -o $@ -Wall -g -lrt
run: ${PROG}
./${PROG}
strace: ${PROG}
strace ./${PROG}
clean:
rm -f ./${PROG}