aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2023-06-06 08:18:57 +0000
committerOmar Polo <op@omarpolo.com>2023-06-06 08:18:57 +0000
commitc68baad22af4c65c090a3ba6d83a155561275134 (patch)
tree7fbf71b9c1151fc0df1dace08e785c12e74d70a9 /Makefile
parent0046c1fe9ca72ed024c8562d51e2b320f7968915 (diff)
move config-related code to config.c
reuse it in ge too.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 752e656..d950f33 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,8 @@
# all.
TESTS=
-GMID_SRCS = dirs.c \
+GMID_SRCS = config.c \
+ dirs.c \
fcgi.c \
gmid.c \
iri.c \
@@ -34,7 +35,8 @@ GMID_SRCS = dirs.c \
GMID_OBJS = ${GMID_SRCS:.c=.o} ${COBJS}
-GE_SRCS = dirs.c \
+GE_SRCS = config.c \
+ dirs.c \
fcgi.c \
ge.c \
iri.c \