mirror of
https://github.com/FelixKratz/SketchyBar
synced 2024-11-10 05:44:16 +00:00
38 lines
1.5 KiB
Makefile
38 lines
1.5 KiB
Makefile
FRAMEWORK_PATH = -F/System/Library/PrivateFrameworks
|
|
FRAMEWORK = -framework Carbon -framework Cocoa -framework CoreServices -framework SkyLight -framework ScriptingBridge -framework IOKit
|
|
BUILD_FLAGS = -std=c99 -Wall -DDEBUG -fsanitize=address -fsanitize=undefined -g -O0 -fvisibility=hidden -mmacosx-version-min=10.13
|
|
BUILD_PATH = ./bin
|
|
DOC_PATH = ./doc
|
|
SMP_PATH = ./examples
|
|
SKETCHYBAR_SRC = ./src/manifest.m
|
|
BINS = $(BUILD_PATH)/sketchybar
|
|
|
|
.PHONY: all clean install man
|
|
|
|
all: clean $(BINS)
|
|
|
|
install: BUILD_FLAGS=-std=c99 -Wall -DNDEBUG -O2 -fvisibility=hidden -mmacosx-version-min=10.13
|
|
install: clean $(BINS)
|
|
ln ./bin/sketchybar /usr/local/bin/sketchybar
|
|
mkdir ~/.config/sketchybar
|
|
cp sketchybarrc ~/.config/sketchybar/sketchybarrc
|
|
cp -r plugins ~/.config/sketchybar
|
|
chmod +x ~/.config/sketchybar/sketchybarrc
|
|
chmod +x ~/.config/sketchybar/plugins/*
|
|
echo "Install complete..."
|
|
|
|
update: BUILD_FLAGS=-std=c99 -Wall -DNDEBUG -O2 -fvisibility=hidden -mmacosx-version-min=10.13
|
|
update: clean $(BINS)
|
|
rm /usr/local/bin/sketchybar
|
|
ln ./bin/sketchybar /usr/local/bin/sketchybar
|
|
echo "Update complete... ~/.config/ folder not touched and might need update too...."
|
|
|
|
stats: BUILD_FLAGS=-std=c99 -Wall -DSTATS -DNDEBUG -O2 -fvisibility=hidden -mmacosx-version-min=10.13
|
|
stats: clean $(BINS)
|
|
|
|
clean:
|
|
rm -rf $(BUILD_PATH)
|
|
|
|
$(BUILD_PATH)/sketchybar: $(SKETCHYBAR_SRC)
|
|
mkdir -p $(BUILD_PATH)
|
|
clang $^ $(BUILD_FLAGS) $(FRAMEWORK_PATH) $(FRAMEWORK) -o $@
|