Update to redirect logs to a file in /var/log/tomd
[tlb/tomd.git] / Makefile
CommitLineData
e46bd334
TB
1# TODO > Use GNU automake tools
2
da4c0e62
TB
3all:tomd client
4
070126d1
TB
5tomd:./src/tomd/main.c ./src/common/guile_helpers.c
6 gcc -o tomd \
7 ./src/tomd/main.c ./src/common/guile_helpers.c \
8 -I/usr/include/guile/2.0 \
9 -lguile-2.0
da4c0e62 10
070126d1 11client:./src/dumb-client/main.c
da4c0e62 12 gcc -o client ./src/dumb-client/main.c