From df6e7cbaa0edf2df8b5f3929a2eb34fa2aa5a28c Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 28 Aug 2019 13:57:11 +0200 Subject: Proportionnal movement and zoom Zooming and moving is proportionnal to the range we are viewing, feels more natural than incrementing by a constant value. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index dc19c48..fefc439 100644 --- a/Makefile +++ b/Makefile @@ -12,10 +12,10 @@ RM = rm -f .PHONY: all all: $(NAME) -$(NAME): $(OBJ) $(HEADER) +$(NAME): $(OBJ) $(CC) $(LDFLAGS) $(CCFLAGS) -o $@ $(OBJ) -%.o: %.c +%.o: %.c $(HEADER) $(CC) $(LDFLAGS) $(CCFLAGS) -c -o $@ $< .PHONY: debug -- cgit