X-Git-Url: https://git.hcoop.net/tlb/tomd.git/blobdiff_plain/e46bd334db5e6e85bc8615f990580759598ae97d..229b92de130bb0675c034b279dd75ab1a593aa58:/Makefile diff --git a/Makefile b/Makefile index bf84ead..3affb96 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,11 @@ # TODO > Use GNU automake tools -tomd: - gcc -o tomd ./src/main.c +all:tomd tomc + +tomd:./src/tomd/main.c ./src/common/guile_helpers.c + gcc -static -o tomd \ + -I/usr/local/include/guile/2.2 \ + ./src/tomd/main.c ./src/common/guile_helpers.c + +tomc:./src/tomc/main.c ./src/common/socketio.c + gcc -o tomc ./src/tomc/main.c ./src/common/socketio.c -static