fiss

Friedel's Initialization and Service Supervision
Log | Files | Refs | LICENSE

commit b59ba335e9c7834c17190de4bad650a364fbb7da
parent a1a8b486bdc5fc997964b3c4be5bebe62033d4db
Author: Friedel Schon <[email protected]>
Date:   Fri, 28 Apr 2023 01:16:34 +0200

adding target "binary"

Diffstat:
MMakefile | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -34,18 +34,20 @@ ROFF_FILES := $(patsubst $(MAN_DIR)/%.md,$(ROFF_DIR)/%,$(MAN_FILES)) \ INTERMED_DIRS := $(BIN_DIR) $(BUILD_DIR) $(ROFF_DIR) # Magic targets -.PHONY: all clean manual +.PHONY: all clean manual binary .PRECIOUS: $(OBJ_FILES) # Default target -all: compile_flags.txt $(BIN_FILES) manual +all: compile_flags.txt binary manual # Clean target clean: rm -rf $(INTERMED_DIRS) +binary: $(BIN_FILES) + manual: $(ROFF_FILES) # Directory rules