diff options
| author | stkhan <personal@slickd.xyz> | 2021-05-19 21:05:11 -0500 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2021-05-19 21:05:11 -0500 |
| commit | 4436a5db0b99be23edf2fa01f46e06a8eec128d2 (patch) | |
| tree | b7ac239aac050c164a5881d278e858c3dad10b18 /dwmblocks/Makefile | |
| parent | 32c1e14ebb8a629af7aa6e68657b5c52de1be981 (diff) | |
Added nord theme
Diffstat (limited to 'dwmblocks/Makefile')
| -rw-r--r-- | dwmblocks/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/dwmblocks/Makefile b/dwmblocks/Makefile new file mode 100644 index 0000000..ef43ef4 --- /dev/null +++ b/dwmblocks/Makefile @@ -0,0 +1,17 @@ +PREFIX ?= /usr/local +CC ?= cc +LDFLAGS = -lX11 + +output: dwmblocks.c blocks.def.h blocks.h + ${CC} dwmblocks.c $(LDFLAGS) -o dwmblocks +blocks.h: + cp blocks.def.h $@ + + +clean: + rm -f *.o *.gch dwmblocks +install: output + mkdir -p $(DESTDIR)$(PREFIX)/bin + install -m 0755 dwmblocks $(DESTDIR)$(PREFIX)/bin/dwmblocks +uninstall: + rm -f $(DESTDIR)$(PREFIX)/bin/dwmblocks |