diff options
author | Jannis Hoffmann <jannis@fehcom.de> | 2024-09-28 17:23:24 +0200 |
---|---|---|
committer | Jannis Hoffmann <jannis@fehcom.de> | 2024-09-28 17:23:24 +0200 |
commit | 1e3ce53728e270b43d2bf17bdc61bfb5cf3cb0a0 (patch) | |
tree | e2a1131755ea7e5ebe1619921fe3005dfe754555 | |
parent | 4ab19268268cd96b9706625d42a16d2a629134eb (diff) |
-rw-r--r-- | src/Makefile | 6 | ||||
-rw-r--r-- | src/TARGETS | 1 | ||||
-rw-r--r-- | src/dnsstub/Makefile | 4 |
3 files changed, 6 insertions, 5 deletions
diff --git a/src/Makefile b/src/Makefile index 8ca5d6e..4064963 100644 --- a/src/Makefile +++ b/src/Makefile @@ -7,9 +7,9 @@ CCFLAGS=-I../include SRCS=*.c OBJS=*.o -COMPILE=../compile -MAKELIB=../makelib -SHAREDLIB=../sharedlib +COMPILE=./compile +MAKELIB=./makelib +SHAREDLIB=./sharedlib default: clean check libs diff --git a/src/TARGETS b/src/TARGETS index df6d6ee..4341e72 100644 --- a/src/TARGETS +++ b/src/TARGETS @@ -46,6 +46,7 @@ readclose.o scan.o seek.a seek.o +sharedlib sig.a sig.o socket.a diff --git a/src/dnsstub/Makefile b/src/dnsstub/Makefile index c4ca883..968b714 100644 --- a/src/dnsstub/Makefile +++ b/src/dnsstub/Makefile @@ -1,7 +1,7 @@ # dnsstub Makefile -COMPILE=../../compile -MAKELIB=../../makelib +COMPILE=../compile +MAKELIB=../makelib CCFLAGS=-I../../include default: clean check dnsresolv.a |