summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichael Stapelberg <michael@stapelberg.de>2009-07-21 20:45:05 +0200
committerMichael Stapelberg <michael@stapelberg.de>2009-07-21 20:45:05 +0200
commitbd3f63428aeb9cc4de5a54f1b8723105fb82e6d6 (patch)
tree32cd6038c391607a6ae871fae1101f4518e95f0a /Makefile
parenta1eda7b20910e13e8eeda89d64f16fdbd5375865 (diff)
Hide ugly compilation calls in Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 7 insertions, 3 deletions
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