aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2021-03-07 15:55:27 +0100
committerTeddy Wing2021-03-07 16:00:29 +0100
commit6c1f9f85b4428e8c64a006ab65333db094348562 (patch)
tree154b74c2d3e12611b8a803beabfe0edf340587e7
parent9039f04a51180e21791fd061acee89d5f1e507d6 (diff)
downloadRe-Good-Catalina-Invert-Colours-6c1f9f85b4428e8c64a006ab65333db094348562.tar.bz2
Makefile: Finalise the executable name
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3748d95..ab6dfbf 100644
--- a/Makefile
+++ b/Makefile
@@ -5,8 +5,12 @@ DDHOTKEY_OBJ := $(patsubst %.m,%.o,$(wildcard lib/DDHotKey/*.m))
BUILD_DIR := $(abspath build)
LOCAL_INCLUDE_DIR := $(BUILD_DIR)/include
+RELEASE_PRODUCT := invert-catalina-invert
-all: $(SOURCES) build/libddhotkey.a build/include/*.h
+
+all: $(RELEASE_PRODUCT)
+
+$(RELEASE_PRODUCT): $(SOURCES) build/libddhotkey.a build/include/*.h
clang -x objective-c \
-mmacosx-version-min=10.7 \
-framework Carbon \