]> git.sur5r.net Git - cc65/commitdiff
Reduced verbosity.
authorOliver Schmidt <ol.sc@web.de>
Sun, 5 May 2013 20:34:04 +0000 (22:34 +0200)
committerOliver Schmidt <ol.sc@web.de>
Sun, 5 May 2013 20:36:53 +0000 (22:36 +0200)
src/Makefile

index e62886c737543fc7007c79336425ef0064140ccf..635c87470a599bfa600013e58297e525d269ba52 100644 (file)
@@ -22,13 +22,17 @@ CFLAGS += -MMD -MP -O -std=c89 -I common \
 
 LDLIBS += -lm
 
+.SUFFIXES:
+
+.PHONY: all $(PROGS) mostlyclean clean install uninstall
+
 all: $(PROGS)
 
 mostlyclean:
        $(RM) -r ../wrk
 
-clean: mostlyclean
-       $(RM) -r ../bin
+clean:
+       $(RM) -r ../wrk ../bin
 
 install: all
        $(foreach prog,$(PROGS),$(INSTALL_recipe))
@@ -36,10 +40,6 @@ install: all
 uninstall:
        $(foreach prog,$(PROGS),$(UNINSTALL_recipe))
 
-.PHONY: all $(PROGS) mostlyclean clean install uninstall
-
-.SUFFIXES:
-
 ##########
 
 define INSTALL_recipe
@@ -65,7 +65,7 @@ $1_OBJS := $$(patsubst %.c,../wrk/%.o,$$(wildcard $1/*.c))
 $$($1_OBJS): | ../wrk/$1
 
 ../wrk/$1:
-       mkdir -p $$@
+       @mkdir -p $$@
 
 DEPS += $$($1_OBJS:.o=.d)
 
@@ -87,11 +87,11 @@ endef
 ##########
 
 ../wrk/%.o: %.c
-       @echo $(CC) $<
+       @echo $<
        @$(CC) -c $(CFLAGS) -o $@ $<
 
 ../bin:
-       mkdir $@
+       @mkdir $@
 
 $(eval $(call OBJS_template,common))
 ../wrk/common/common.a: $(common_OBJS)