X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/halibut/blobdiff_plain/dc69abf1a840990e2e0885777d697e0d98541d86..26c8c119efd44804c7b27f8637c69eda63f0c189:/Makefile diff --git a/Makefile b/Makefile index eab0e3e..6af0dc2 100644 --- a/Makefile +++ b/Makefile @@ -9,12 +9,15 @@ # Currently depends on GNU make, because: # - the Makefile uses GNU ifdef / ifndef commands and GNU make `%' # pattern rules +# - we use .PHONY prefix=/usr/local exec_prefix=$(prefix) bindir=$(exec_prefix)/bin INSTALL=install -c +.PHONY: all install clean spotless topclean release + ifdef RELEASE ifndef VERSION VERSION := $(RELEASE) @@ -68,7 +71,7 @@ else # The `real' makefile part. -CFLAGS += -Wall -W +CFLAGS += -Wall -W -ansi -pedantic ifdef TEST CFLAGS += -DLOGALLOC @@ -83,7 +86,7 @@ endif ifdef VER VDEF = -DVERSION=\"$(VER)\" else -VDEF = `(cd $(SRC); md5sum -c manifest && cat version)` +VDEF = `(cd $(SRC); md5sum -c manifest >/dev/null 2>&1 && cat version)` endif all: halibut @@ -103,9 +106,9 @@ CFLAGS += -I$(LIBCHARSET_SRCDIR) -I$(LIBCHARSET_OBJDIR) include $(LIBCHARSET_SRCDIR)Makefile MODULES := main malloc ustring error help licence version misc tree234 -MODULES += input keywords contents index style biblio +MODULES += input in_afm in_pf in_sfnt keywords contents index biblio MODULES += bk_text bk_html bk_whlp bk_man bk_info bk_paper bk_ps bk_pdf -MODULES += winhelp psdata wcwidth +MODULES += winhelp deflate psdata wcwidth OBJECTS := $(addsuffix .o,$(MODULES)) $(LIBCHARSET_OBJS) DEPS := $(addsuffix .d,$(MODULES))