aboutsummaryrefslogtreecommitdiff
path: root/segments/Makefile
diff options
context:
space:
mode:
authorCody Hiar <codyfh@gmail.com>2017-04-20 19:37:10 -0600
committerCody Hiar <codyfh@gmail.com>2017-04-20 19:37:10 -0600
commit2dd809781527976307b47a598887062047e202c9 (patch)
tree8b29daba2c1ef072f380ef530b7e7d9256e43eb3 /segments/Makefile
parentbaeb698bb006193559fc5aa1901180a3ccc73b7a (diff)
Making tmux configuration much easier to manage
Diffstat (limited to 'segments/Makefile')
-rw-r--r--segments/Makefile18
1 files changed, 0 insertions, 18 deletions
diff --git a/segments/Makefile b/segments/Makefile
deleted file mode 100644
index 07767b5..0000000
--- a/segments/Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-# Build the small MPD NP program.
-# Enable debug printing with $ make -e DEBUG=1
-DEBUG=0
-CC = $(shell hash clang 2>/dev/null && echo clang || echo gcc)
-CFLAGS = -O3 -Wall -std=c99 -I /usr/include/ -D DEBUG=${DEBUG}
-LDLIBS = -lmpdclient
-XKB_LAYOUT_LDLIBS= -lX11
-
-.PHONY: all clean
-
-all: np_mpd xkb_layout
-
-xkb_layout: xkb_layout.c
- $(CC) $(CFLAGS) $(LDFLAGS) $< $(XKB_LAYOUT_LDLIBS) -o $@
-
-clean:
- $(RM) np_mpd
- $(RM) xkb_layout