aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authoramy <[email protected]>2025-12-01 02:29:08 -0800
committerGitHub <[email protected]>2025-12-01 02:29:08 -0800
commita7caf5e9f4ca1cfddafaf5880d7ee2020e3c1578 (patch)
tree86009cf7312ff6dc4cb5c2e1bcf7a9a43a561750 /makefile
parent228ba21e4fe702393b5e131ea14bbbfceff3f0b1 (diff)
parent735c7feb19cb29ec24588bf1a4986b52f8cf6ffa (diff)
Merge pull request #6 from ameliasquires/main
update
Diffstat (limited to 'makefile')
-rw-r--r--makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/makefile b/makefile
index 9e9679d..fe25fa2 100644
--- a/makefile
+++ b/makefile
@@ -31,11 +31,13 @@ else
CFLAGS += -fPIC
endif
+.PHONY: all
all: $(TARGET)
release: CFLAGS += $(RELEASE_FLAGS)
release: all
+.PHONY: install
install::
mkdir $(INSTALL)$(install_version) -p
cp $(TARGET) $(INSTALL)$(install_version)/$(TARGET)
@@ -74,5 +76,8 @@ reg: all
$(TARGET): $(OBJS)
$(LINKER) $(OBJS) -o $(TARGET) $(LFLAGS)
+.PHONY: clean
clean:
rm -f $(OBJS)
+
+