From: Daniel Carl Date: Mon, 31 Dec 2012 16:29:31 +0000 (+0100) Subject: Made make a little more verbose. X-Git-Url: https://git.owens.tech/about.html/about.html/git?a=commitdiff_plain;h=a4ad174f7f5cc5cead365aa50730a36f9823d03f;p=vimb.git Made make a little more verbose. --- 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))