From ac650d65b065faaec76b8327e493757344195cc9 Mon Sep 17 00:00:00 2001 From: Brett Weiland Date: Sun, 20 Sep 2020 17:36:04 -0500 Subject: modified: maintain_focus.c modified: makefile --- makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index c352f29..2dbf5ae 100644 --- a/makefile +++ b/makefile @@ -1,8 +1,9 @@ CC=gcc OUT=capture_focus +LIBS=-lgphoto2 -lncurses -ltinfo make: maintain_focus.c - $(CC) maintain_focus.c -lgphoto2 -o $(OUT) + $(CC) maintain_focus.c $(LIBS) -o $(OUT) debug: maintain_focus.c - $(CC) maintain_focus.c -lgphoto2 -ggdb -o $(OUT) + $(CC) maintain_focus.c $(LIBS) -ggdb -o $(OUT) -- cgit v1.2.3