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