From: Michael Stapelberg Date: Tue, 21 Jul 2009 18:45:05 +0000 (+0200) Subject: Hide ugly compilation calls in Makefile X-Git-Tag: 2.0~53 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=bd3f63428aeb9cc4de5a54f1b8723105fb82e6d6;p=i3%2Fi3status Hide ugly compilation calls in Makefile --- diff --git a/Makefile b/Makefile index 7101da3..24c8297 100644 --- a/Makefile +++ b/Makefile @@ -16,13 +16,17 @@ endif CFLAGS+=-DDZEN CFLAGS+=$(EXTRA_CFLAGS) -src/%.o: src/%.c src/%.h - $(CC) $(CFLAGS) -c -o $@ $< +src/%.o: src/%.c + @$(CC) $(CFLAGS) -c -o $@ $< + @echo " CC $<" %.o: %.c %.h - $(CC) $(CFLAGS) -c -o $@ $< + @$(CC) $(CFLAGS) -c -o $@ $< + @echo " CC $<" i3status: src/general.o src/config.o src/get_load.o src/output.o src/get_cpu_temperature.o src/process_runs.o src/get_eth_info.o src/get_ip_addr.o src/get_wireless_info.o src/get_battery_info.o src/get_ipv6_addr.o i3status.o + @$(CC) $(LDFLAGS) -o $@ src/*.o *.o + @echo " LD $@" clean: rm -f *.o src/*.o