diff options
author | Laslo Hunhold <dev@frign.de> | 2017-09-17 17:12:44 +0200 |
---|---|---|
committer | Aaron Marcher <me@drkhsh.at> | 2017-09-17 17:37:49 +0200 |
commit | eea99fc0ac0ca9333863fca80062f22fdd953468 (patch) | |
tree | 672aba3b41a28e813db8e4237f561dfd89680182 /Makefile | |
parent | 6820631175868c277effa7cc05f9cb3197b72654 (diff) |
Rewrite Makefile to accomodate file split
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 63 |
1 files changed, 55 insertions, 8 deletions
@@ -1,25 +1,72 @@ -# See LICENSE file for copyright and license details. +# See LICENSE file for copyright and license details # slstatus - suckless status monitor .POSIX: include config.mk +REQ = util +HDR = arg.h +COM =\ + battery\ + cpu\ + datetime\ + disk\ + entropy\ + hostname\ + ip\ + kernel_release\ + keyboard_indicators\ + load_avg\ + num_files\ + ram\ + run_command\ + swap\ + temperature\ + uptime\ + user\ + volume\ + wifi + all: slstatus -slstatus: slstatus.c config.h config.mk - $(CC) -o $@ $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) slstatus.c $(LDLIBS) +slstatus: slstatus.o $(COM:=.o) $(REQ:=.o) +slstatus.o: slstatus.c slstatus.h $(HDR) $(REQ:=.h) + +battery.o: battery.c config.mk $(HDR) $(REQ:=.h) +cpu.o: cpu.c config.mk $(HDR) $(REQ:=.h) +datetime.o: datetime.c config.mk $(HDR) $(REQ:=.h) +disk.o: disk.c config.mk $(HDR) $(REQ:=.h) +entropy.o: entropy.c config.mk $(HDR) $(REQ:=.h) +hostname.o: hostname.c config.mk $(HDR) $(REQ:=.h) +ip.o: ip.c config.mk $(HDR) $(REQ:=.h) +kernel_release.o: kernel_release.c config.mk $(HDR) $(REQ:=.h) +keyboard_indicators.o: keyboard_indicators.c config.mk $(HDR) $(REQ:=.h) +load_avg.o: load_avg.c config.mk $(HDR) $(REQ:=.h) +num_files.o: num_files.c config.mk $(HDR) $(REQ:=.h) +ram.o: ram.c config.mk $(HDR) $(REQ:=.h) +run_command.o: run_command.c config.mk $(HDR) $(REQ:=.h) +swap.o: swap.c config.mk $(HDR) $(REQ:=.h) +temperature.o: temperature.c config.mk $(HDR) $(REQ:=.h) +uptime.o: uptime.c config.mk $(HDR) $(REQ:=.h) +user.o: user.c config.mk $(HDR) $(REQ:=.h) +volume.o: volume.c config.mk $(HDR) $(REQ:=.h) +wifi.o: wifi.c config.mk $(HDR) $(REQ:=.h) + +.o: + $(CC) -o $@ $(LDFLAGS) $< $(COM:=.o) $(REQ:=.o) $(LDLIBS) -config.h: - cp config.def.h $@ +.c.o: + $(CC) -c $(CPPFLAGS) $(CFLAGS) $< clean: - rm -f slstatus + rm -f slstatus slstatus.o $(COM:=.o) $(REQ:=.o) dist: rm -rf "slstatus-$(VERSION)" mkdir -p "slstatus-$(VERSION)" - cp -R arg.h config.def.h config.mk LICENSE Makefile README slstatus.1 \ - slstatus.c slstatus.png "slstatus-$(VERSION)" + cp -R LICENSE Makefile README config.mk config.def.h \ + $(HDR) slstatus.c $(COM:=.c) $(REQ:=.c) $(REQ:=.h) \ + slstatus.1 "slstatus-$(VERSION)" tar -cf - "slstatus-$(VERSION)" | gzip -c > "slstatus-$(VERSION).tar.gz" rm -rf "slstatus-$(VERSION)" |