repo2html/Makefile

27 lines
501 B
Makefile
Raw Normal View History

DEPS = utf8 lowdown sxml-transforms clojurian
2022-12-02 16:41:55 -05:00
SRC = main.scm
DIR_INSTALL ?= /usr/local/bin
DIR_BUILD = .
BIN = repo2html
all: compile
compile:
mkdir -p $(DIR_BUILD)/
2022-12-02 16:41:55 -05:00
csc -O3 -static ./$(SRC) -o $(DIR_BUILD)/$(BIN)
rm ./$(DIR_BUILD)/$(BIN).link
@echo "Finished compiling a static binary in $(DIR_BUILD)/$(BIN)!"
dependencies:
chicken-install $(DEPS)
install:
install -Dm755 $(DIR_BUILD)/$(BIN) -D $(DIR_INSTALL)/$(PROG)
uninstall:
rm $(DIR_INSTALL)/$(PROG)
clean:
rm $(DIR_BUILD)/$(BIN)