mirror of
https://github.com/FelixKratz/SketchyBar
synced 2024-11-10 05:44:16 +00:00
67a44cca70
Closes #54
29 lines
1 KiB
Makefile
29 lines
1 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
|
|
SMP_PATH = ./examples
|
|
SPACEBAR_SRC = ./src/manifest.m
|
|
BINS = $(BUILD_PATH)/spacebar
|
|
|
|
.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)
|
|
|
|
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 && \
|
|
sed -i 's/1980-01-01/$(shell date "+%Y-%m-%d")/g' $(DOC_PATH)/spacebar.1
|
|
|
|
clean:
|
|
rm -rf $(BUILD_PATH)
|
|
|
|
$(BUILD_PATH)/spacebar: $(SPACEBAR_SRC)
|
|
mkdir -p $(BUILD_PATH)
|
|
clang $^ $(BUILD_FLAGS) $(FRAMEWORK_PATH) $(FRAMEWORK) -o $@
|