summaryrefslogtreecommitdiff
path: root/src/GNUmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/GNUmakefile')
-rw-r--r--src/GNUmakefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/GNUmakefile b/src/GNUmakefile
index 64e2394..f8a4707 100644
--- a/src/GNUmakefile
+++ b/src/GNUmakefile
@@ -6,6 +6,10 @@ INCLUDE_DIRS = -I$(TOPDIR)/include/wolf -I.
BINS =
+THREADING_OBJS = \
+ threads/mutex.o \
+ threads/threads.o
+
PORT_OBJS = \
port/string.o \
port/unistd.o \
@@ -26,14 +30,11 @@ DAEMON_OBJS = \
SERVICE_OBJS = \
service/service.o
-THREADING_OBJS = \
- threads/mutex.o
-
OBJS = \
+ $(THREADING_OBJS) \
$(PORT_OBJS) \
$(LOG_OBJS) \
- $(DAEMON_OBJS) \
- $(THREADING_OBJS)
+ $(DAEMON_OBJS)
CATALOG_NAME = libwolf