From a4ad174f7f5cc5cead365aa50730a36f9823d03f Mon Sep 17 00:00:00 2001 From: Daniel Carl Date: Mon, 31 Dec 2012 17:29:31 +0100 Subject: [PATCH] Made make a little more verbose. --- Makefile | 10 +++++----- config.mk | 3 --- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index be4b907..4f032b7 100644 --- a/Makefile +++ b/Makefile @@ -31,19 +31,19 @@ $(DTARGET): $(DOBJ) @$(CC) -c -o $@ $< $(CPPFLAGS) $(DFLAGS) man: - @$(MAKE) $(MFLAGS) -C doc man + @$(MAKE) -C doc man -install: $(TARGET) man +install: $(TARGET) install -d $(BINDIR) install -m 755 $(TARGET) $(BINDIR) - @$(MAKE) $(MFLAGS) -C doc install + @$(MAKE) -C doc install uninstall: $(RM) $(BINDIR)$(TARGET) - @$(MAKE) $(MFLAGS) -C doc uninstall + @$(MAKE) -C doc uninstall clean: - @$(MAKE) $(MFLAGS) -C doc clean + @$(MAKE) -C doc clean $(RM) $(OBJ) $(DOBJ) $(TARGET) $(DTARGET) dist: distclean diff --git a/config.mk b/config.mk index 3815633..961fe8b 100644 --- a/config.mk +++ b/config.mk @@ -50,9 +50,6 @@ DFLAGS += -DDEBUG DFLAGS += -ggdb DFLAGS += -g -# Makeflags -MFLAGS=--no-print-directory - #----------------end of options---------------------- PP = m4 OBJ = $(patsubst %.c, %.o, $(wildcard src/*.c)) -- 2.20.1