aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
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)
+
+