summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMichal Minar <mic.liamg@gmail.com>2015-08-25 07:25:17 +0200
committerMichal Minar <mic.liamg@gmail.com>2015-08-25 07:25:17 +0200
commitc2db37145444431ac55debe79665f9de2333efd0 (patch)
tree29166ebffd570366d020f15a26166212658277b2 /Makefile
parentce2490a4d9ce990bc8c0f189bd04535b202a84e3 (diff)
downloadxminad-c2db37145444431ac55debe79665f9de2333efd0.tar.gz
xminad-c2db37145444431ac55debe79665f9de2333efd0.tar.xz
xminad-c2db37145444431ac55debe79665f9de2333efd0.zip
Revert "Added taffybar - not working"
This reverts commit ce2490a4d9ce990bc8c0f189bd04535b202a84e3.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 1 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 2d00064..5e667a6 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,6 @@
ARCH := $(shell uname -m)
OS := $(shell uname -s | tr '[A-Z]' '[a-z]')
TARGET := $(HOME)/.xmonad/xmonad-$(ARCH)-$(OS)
-TAFFY := $(HOME)/.config/taffybar/taffybar.hs
SRC := $(shell find . -type f -name '*.hs')
CABAL_BIN ?= $(shell which cabal)
SANDBOX := cabal.sandbox.config
@@ -20,7 +19,7 @@ DISPLAY ?= :0
all: build
################################################################################
-install: $(TARGET) $(TAFFY)
+install: $(TARGET)
################################################################################
build: $(XMINAD)
@@ -74,7 +73,3 @@ $(TARGET): $(XMINAD)
if [ -r $@ ]; then mv $@ $@.prev; fi
cp -p $? $@
cd $(dir $@) && ln -nfs $(notdir $@) xminad
-
-$(TAFFY): $(XMINAD)
- mkdir -p $(dir $@)
- ln -sf $(CURDIR)/taffybar.hs $@