From: David Griffith Date: Mon, 27 Feb 2017 05:13:34 +0000 (-0800) Subject: Added some commentary to the end of the build process. X-Git-Url: https://scope-eye.net/git/?a=commitdiff_plain;h=00b1ac2f2c0d5825051716358c5e09adb0973030;p=liskon_frotz.git Added some commentary to the end of the build process. --- 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)