diff options
author | Kay Sievers <kay.sievers@suse.de> | 2006-01-28 04:44:51 +0100 |
---|---|---|
committer | Kay Sievers <kay.sievers@suse.de> | 2006-01-28 04:44:51 +0100 |
commit | 1ef985452b0247ec32799b64ecabb85cb8ffe473 (patch) | |
tree | 1f69e5e04f97d5902fc847840b0c70cbd9c0d1be /extras/volume_id/libvolume_id/Makefile | |
parent | 4942c78cb01ef4100a3cbce577fc3262b82d9be4 (diff) |
replace fancy silent build program by simple kernel build like logic
Signed-off-by: Kay Sievers <kay.sievers@suse.de>
Diffstat (limited to 'extras/volume_id/libvolume_id/Makefile')
-rw-r--r-- | extras/volume_id/libvolume_id/Makefile | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/extras/volume_id/libvolume_id/Makefile b/extras/volume_id/libvolume_id/Makefile index 02c24eae05..07f6662f25 100644 --- a/extras/volume_id/libvolume_id/Makefile +++ b/extras/volume_id/libvolume_id/Makefile @@ -53,14 +53,18 @@ all: $(LIBVOLUME_ID) .DEFAULT: all %.o: %.c - $(QUIET) $(CC) -c $(CFLAGS) $< -o $@ + $(E) " CC " $@ + $(Q) $(CC) -c $(CFLAGS) $< -o $@ $(LIBVOLUME_ID): $(HEADERS) $(OBJS) - @rm -f $@ - $(QUIET) $(AR) cq $@ $(OBJS) - $(QUIET) $(RANLIB) $@ + $(Q) rm -f $@ + $(E) " AR " $@ + $(Q) $(AR) cq $@ $(OBJS) + $(E) " RANLIB " $@ + $(Q) $(RANLIB) $@ clean: - rm -f $(LIBVOLUME_ID) $(OBJS) + $(E) " CLEAN " + $(Q) rm -f $(LIBVOLUME_ID) $(OBJS) .PHONY: clean |