diff options
author | Michael Stapelberg <michael@stapelberg.de> | 2009-07-21 20:45:05 +0200 |
---|---|---|
committer | Michael Stapelberg <michael@stapelberg.de> | 2009-07-21 20:45:05 +0200 |
commit | bd3f63428aeb9cc4de5a54f1b8723105fb82e6d6 (patch) | |
tree | 32cd6038c391607a6ae871fae1101f4518e95f0a | |
parent | a1eda7b20910e13e8eeda89d64f16fdbd5375865 (diff) |
Hide ugly compilation calls in Makefile
-rw-r--r-- | Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -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 |