From 022f0462e9a80cc37477255b2460f0438b42eb70 Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Sun, 11 Feb 2024 23:27:01 +0100 Subject: [PATCH] move config and util from lib to prog --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c1b6b0b..ad81ef4 100644 --- a/Makefile +++ b/Makefile @@ -12,9 +12,9 @@ LDFLAGS = NAME = modfetch SRC = src -_PROG = modfetch.c +_PROG = modfetch.c config.c util.c PROG = $(addprefix $(SRC)/, $(_PROG)) -_LIB = config.c semver.c util.c +_LIB = semver.c LIB = $(addprefix $(SRC)/, $(_LIB)) OBJ = $(_PROG:.c=.o) $(_LIB:.c=.o) BIN = target