chiark / gitweb /
remove all stripping code
[elogind.git] / extras / ata_id / Makefile
index ebf0f4e9b43c05fc3be091d10e366bd1dce84fec..690100082eff1f59f2e6bd8deeaa02fff9646f8f 100644 (file)
@@ -30,21 +30,22 @@ all: $(PROG) $(MAN_PAGES)
 .DEFAULT: all
 
 %.o: %.c $(GEN_HEADERS)
-       $(QUIET) $(CC) -c $(CFLAGS) $< -o $@
+       $(E) "  CC      " $@
+       $(Q) $(CC) -c $(CFLAGS) $< -o $@
 
 $(PROG): %: $(HEADERS) %.o $(OBJS)
-       $(QUIET) $(LD) $(LDFLAGS) $@.o $(OBJS) -o $@ $(LIBUDEV) $(LIBSYSFS) $(LIB_OBJS)
-ifneq ($(STRIPCMD),)
-       $(QUIET) $(STRIPCMD) $@
-endif
+       $(E) "  LD      " $@
+       $(Q) $(LD) $(LDFLAGS) $@.o $(OBJS) -o $@ $(LIBUDEV) $(LIB_OBJS)
 
 # man pages
 %.8: %.xml
-       xmlto man $?
+       $(E) "  XMLTO   " $@
+       $(Q) xmlto man $?
 .PRECIOUS: %.8
 
 clean:
-       rm -f $(PROG) $(OBJS) $(GEN_HEADERS)
+       $(E) "  CLEAN   "
+       $(Q) rm -f $(PROG) $(OBJS) $(GEN_HEADERS)
 .PHONY: clean
 
 install-bin: all