diff options
author | Omar Polo <op@omarpolo.com> | 2023-06-06 08:18:57 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2023-06-06 08:18:57 +0000 |
commit | c68baad22af4c65c090a3ba6d83a155561275134 (patch) | |
tree | 7fbf71b9c1151fc0df1dace08e785c12e74d70a9 /Makefile | |
parent | 0046c1fe9ca72ed024c8562d51e2b320f7968915 (diff) |
move config-related code to config.c
reuse it in ge too.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 \ |