diff options
Diffstat (limited to 'src/tool/Makefile')
| -rw-r--r-- | src/tool/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/tool/Makefile b/src/tool/Makefile new file mode 100644 index 00000000..df41ebae --- /dev/null +++ b/src/tool/Makefile @@ -0,0 +1,13 @@ +CFLAGS += -DDOCDIR='"/usr/local/share/doc/ngircd"' +CFLAGS += -DHAVE_CONFIG_H +CFLAGS += -I.. +CFLAGS += -I../portab +CFLAGS += -I../ipaddr +CFLAGS += -I../tool + +OBJS += tool.o + +all: libngtool.a + +libngtool.a: ${OBJS} + ar rcs libngtool.a ${OBJS} |