mirror of
https://github.com/FelixKratz/SketchyBar
synced 2024-11-23 03:43:02 +00:00
46 lines
1.5 KiB
Makefile
46 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 -g -O0 -fvisibility=hidden -mmacosx-version-min=10.13
|
|
BUILD_PATH = ./bin
|
|
DOC_PATH = ./doc
|
|
SCRIPT_PATH = ./scripts
|
|
ASSET_PATH = ./assets
|
|
SMP_PATH = ./examples
|
|
ARCH_PATH = ./archive
|
|
SPACEBAR_SRC = ./src/manifest.m
|
|
BINS = $(BUILD_PATH)/spacebar
|
|
|
|
.PHONY: all clean install sign archive man
|
|
|
|
all: clean $(BINS)
|
|
|
|
install: BUILD_FLAGS=-std=c99 -Wall -DNDEBUG -O2 -fvisibility=hidden -mmacosx-version-min=10.13
|
|
install: clean $(BINS)
|
|
|
|
stats: BUILD_FLAGS=-std=c99 -Wall -DSTATS -DNDEBUG -O2 -fvisibility=hidden -mmacosx-version-min=10.13
|
|
stats: clean $(BINS)
|
|
|
|
man:
|
|
asciidoctor -b manpage $(DOC_PATH)/spacebar.asciidoc -o $(DOC_PATH)/spacebar.1
|
|
|
|
icon:
|
|
python $(SCRIPT_PATH)/seticon.py $(ASSET_PATH)/icon/2x/icon-512px@2x.png $(BUILD_PATH)/spacebar
|
|
|
|
archive: man install sign icon
|
|
rm -rf $(ARCH_PATH)
|
|
mkdir -p $(ARCH_PATH)
|
|
cp -r $(BUILD_PATH) $(ARCH_PATH)/
|
|
cp -r $(DOC_PATH) $(ARCH_PATH)/
|
|
cp -r $(SMP_PATH) $(ARCH_PATH)/
|
|
tar -cvzf $(BUILD_PATH)/$(shell $(BUILD_PATH)/spacebar --version).tar.gz $(ARCH_PATH)
|
|
rm -rf $(ARCH_PATH)
|
|
|
|
sign:
|
|
codesign -fs "spacebar-cert" $(BUILD_PATH)/spacebar
|
|
|
|
clean:
|
|
rm -rf $(BUILD_PATH)
|
|
|
|
$(BUILD_PATH)/spacebar: $(SPACEBAR_SRC)
|
|
mkdir -p $(BUILD_PATH)
|
|
clang $^ $(BUILD_FLAGS) $(FRAMEWORK_PATH) $(FRAMEWORK) -o $@
|