summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile1
-rw-r--r--extras/scsi_id/Makefile5
-rw-r--r--extras/volume_id/Makefile5
3 files changed, 9 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 890667be9d..fffc3c4c15 100644
--- a/Makefile
+++ b/Makefile
@@ -185,6 +185,7 @@ all: $(ROOT) $(SENDER) $(DAEMON) $(INFO) $(TESTER) $(WAIT) $(GEN_CONFIGS)
LD="$(LD)" \
SYSFS="$(SYSFS)" \
KERNEL_DIR="$(KERNEL_DIR)" \
+ QUIET="@$(PWD)/ccdv" \
-C $$target $@ ; \
done ; \
diff --git a/extras/scsi_id/Makefile b/extras/scsi_id/Makefile
index 7ccc4c5118..2f134bcdbd 100644
--- a/extras/scsi_id/Makefile
+++ b/extras/scsi_id/Makefile
@@ -72,5 +72,8 @@ clean:
spotless: clean
+.c.o:
+ $(QUIET) $(CC) $(CFLAGS) -c -o $@ $<
+
$(PROG): $(OBJS)
- $(LD) $(LDFLAGS) -o $(PROG) $(CRT0) $(OBJS) $(SYSFS) $(LIB_OBJS) $(ARCH_LIB_OBJS)
+ $(QUIET) $(LD) $(LDFLAGS) -o $(PROG) $(CRT0) $(OBJS) $(SYSFS) $(LIB_OBJS) $(ARCH_LIB_OBJS)
diff --git a/extras/volume_id/Makefile b/extras/volume_id/Makefile
index 8813f9fca5..d0c6e40fa3 100644
--- a/extras/volume_id/Makefile
+++ b/extras/volume_id/Makefile
@@ -49,8 +49,11 @@ HEADERS = volume_id.h dasdlabel.h
$(OBJS): $(HEADERS)
+.c.o:
+ $(QUIET) $(CC) $(CFLAGS) -c -o $@ $<
+
$(PROG): $(OBJS) $(HEADERS)
- $(LD) $(LDFLAGS) -o $(PROG) $(CRT0) $(OBJS) $(LIB_OBJS) $(ARCH_LIB_OBJS)
+ $(QUIET) $(LD) $(LDFLAGS) -o $(PROG) $(CRT0) $(OBJS) $(LIB_OBJS) $(ARCH_LIB_OBJS)
clean:
rm -f $(PROG) $(OBJS)