From 745fb02f2f166d3b5a2fae7d5050e92e35062393 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Thu, 1 Oct 2009 22:13:30 +0200 Subject: [PATCH 1/1] Fix linking (Thanks Atsutane) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fda8438..bcbb73d 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ src/%.o: src/%.c @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 + @$(CC) -o $@ src/*.o *.o $(LDFLAGS) @echo " LD $@" clean: -- 2.39.2