summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--examples/Makefile.am4
-rw-r--r--examples/testd.c10
2 files changed, 7 insertions, 7 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am
index e0efa14..fb903fd 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -18,7 +18,7 @@
noinst_PROGRAMS = testd
-AM_CPPFLAGS=-I$(top_srcdir)/src
+AM_CPPFLAGS=-I$(top_srcdir)
testd_SOURCES=testd.c
-testd_LDADD=../src/libdaemon.la
+testd_LDADD=../libdaemon/libdaemon.la
diff --git a/examples/testd.c b/examples/testd.c
index 98e15d8..7d97f6c 100644
--- a/examples/testd.c
+++ b/examples/testd.c
@@ -23,11 +23,11 @@
#include <string.h>
#include <sys/select.h>
-#include <dfork.h>
-#include <dsignal.h>
-#include <dlog.h>
-#include <dpid.h>
-#include <dexec.h>
+#include <libdaemon/dfork.h>
+#include <libdaemon/dsignal.h>
+#include <libdaemon/dlog.h>
+#include <libdaemon/dpid.h>
+#include <libdaemon/dexec.h>
int main(int argc, char *argv[]) {
pid_t pid;