A couple more filters for guile features.
[tlb/tomd.git] / Makefile
1 # TODO > Use GNU automake tools
2
3 all:tomd tomc
4
5 tomd:./src/tomd/main.c ./src/common/guile_helpers.c
6 gcc -static -o tomd \
7 -I/usr/local/include/guile/2.2 \
8 ./src/tomd/main.c ./src/common/guile_helpers.c
9
10 tomc:./src/tomc/main.c ./src/common/socketio.c
11 gcc -o tomc ./src/tomc/main.c ./src/common/socketio.c -static