From 9875aaebf2d44c3f38be3c72b0c9c0af9422f8cc Mon Sep 17 00:00:00 2001 From: louie Date: Tue, 29 Dec 2020 17:09:17 -0800 Subject: Added menu location caching --- Makefile | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 119160d..6d331f1 100644 --- a/Makefile +++ b/Makefile @@ -6,31 +6,34 @@ PREFIX = /usr/local ifeq ($(OS),Windows_NT) -$(NAME): draw.o read_cfg.o group.o entry.o windows/draw.o windows/read_cfg.o - $(CC) -o $(NAME) draw.o read_cfg.o group.o entry.o windows/draw.o windows/read_cfg.o $(LIBS) +$(NAME): draw.o read_cfg.o group.o entry.o windows/cache.o windows/draw.o windows/read_cfg.o + $(CC) -o $(NAME) draw.o read_cfg.o group.o entry.o windows/cache.o windows/draw.o windows/read_cfg.o $(LIBS) windows/draw.o: windows/draw.c include/draw.h windows/read_cfg.o: windows/read_cfg.c include/read_cfg.h +windows/cache.o: windows/cache.c include/cache.h include/read_cfg.h else -$(NAME): draw.o read_cfg.o group.o entry.o unix/draw.o unix/read_cfg.o - $(CC) -o $(NAME) draw.o read_cfg.o group.o entry.o unix/draw.o unix/read_cfg.o $(LIBS) +$(NAME): draw.o read_cfg.o group.o entry.o unix/cache.o unix/draw.o unix/read_cfg.o + $(CC) -o $(NAME) draw.o read_cfg.o group.o entry.o unix/cache.o unix/draw.o unix/read_cfg.o $(LIBS) unix/draw.o: unix/draw.c include/draw.h unix/read_cfg.o: unix/read_cfg.c include/read_cfg.h +unix/cache.o: unix/cache.c include/cache.h include/read_cfg.h endif -draw.o: draw.c include/draw.h include/entry.h include/group.h include/read_cfg.h -read_cfg.o: read_cfg.c include/entry.h include/group.h +draw.o: draw.c include/cache.h include/draw.h include/entry.h include/group.h include/read_cfg.h +read_cfg.o: read_cfg.c include/entry.h include/group.h include/read_cfg.h group.o: group.c include/entry.h include/group.h include/read_cfg.h entry.o: entry.c include/entry.h include/group.h include/read_cfg.h - .PHONY: clean clean: rm *.o $(NAME) + rm -f unix/*.o + rm -f windows/*.o ifneq ($(OS),Windows_NT) -- cgit