Start of job structure support.
[tlb/tomd.git] / Makefile
1 # TODO > Use GNU automake tools
2
3 all:tomd client
4
5 tomd:./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
10
11 client:./src/dumb-client/main.c
12 gcc -o client ./src/dumb-client/main.c