From 00b1ac2f2c0d5825051716358c5e09adb0973030 Mon Sep 17 00:00:00 2001 From: David Griffith Date: Sun, 26 Feb 2017 21:13:34 -0800 Subject: [PATCH] Added some commentary to the end of the build process. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index afa2fee..c4e8646 100644 --- a/Makefile +++ b/Makefile @@ -164,6 +164,7 @@ SOUND_LIB = -lao -ldl -lpthread -lm -lsndfile -lvorbisfile -lmodplug -lsamplerat .PHONY: all help dist clean distclean install install_dumb uninstall uninstall_dumb hash $(NAME): hash $(COMMON_DIR)/defines.h $(CURSES_DIR)/defines.h $(COMMON_TARGET) $(CURSES_TARGET) $(BLORB_TARGET) + @echo Linking $(NAME)... ifeq ($(SOUND), ao) $(CC) -o $(BINNAME)$(EXTENSION) $(TARGETS) $(LIB) $(CURSES) $(SOUND_LIB) else ifeq ($(SOUND), none) @@ -176,6 +177,7 @@ endif dumb: d$(NAME) d$(NAME): hash $(COMMON_DIR)/defines.h $(COMMON_TARGET) $(DUMB_TARGET) $(BLORB_TARGET) + @echo Linking d$(NAME)... $(CC) -o d$(BINNAME)$(EXTENSION) $(COMMON_TARGET) $(DUMB_TARGET) $(BLORB_TARGET) $(LIB) all: $(NAME) d$(NAME) -- 2.34.1