From f5c90deb3d8992138cf6cbf1febfeabb3eb7234b Mon Sep 17 00:00:00 2001 From: Nishi Date: Tue, 24 Sep 2024 17:07:09 +0000 Subject: [PATCH] make them depend on config.h git-svn-id: file:///raid/svn-personal/tewi/trunk@146 8739d7e6-ffea-ec47-b151-bdff447c6205 --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 77b27c1..130f9eb 100644 --- a/Makefile +++ b/Makefile @@ -12,13 +12,13 @@ FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM) PREFIX=$(PREFIX) all: ./Server ./Module ./Manpage ./Tool/genconf ./Tool/itworks -./Tool/option: ./Tool/option.c +./Tool/option: ./Tool/option.c config.h cc -o $@ ./Tool/option.c -./Tool/genconf: ./Tool/genconf.c +./Tool/genconf: ./Tool/genconf.c config.h cc -o $@ ./Tool/genconf.c -./Tool/itworks: ./Tool/itworks.c +./Tool/itworks: ./Tool/itworks.c config.h cc -o $@ ./Tool/itworks.c ./Server:: ./Common ./Tool/option -- 2.45.2