From 85b2631960901baa85e28e971069002413cd6fb4 Mon Sep 17 00:00:00 2001 From: Ralph Ronnquist Date: Fri, 15 Jul 2022 11:36:37 +1000 Subject: [PATCH] upgrade --- Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8103f14..c2a0ba6 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,11 @@ BINS = fusefile default: $(BINS) -fusefile: CFLAGS = -Wall -D_FILE_OFFSET_BITS=64 +ifneq (${DEBUG},) +fusefile: CFLAGS += -DDEBUG=1 -g +endif + +fusefile: CFLAGS += -Wall -D_FILE_OFFSET_BITS=64 fusefile: LDFLAGS = -lfuse -pthread .INTERMEDIATE: fusefile.o @@ -14,6 +18,9 @@ fusefile: fusefile.o clean: rm -f $(BINS) +README.html: README.adoc + asciidoctor $< > $@ + # Building a debian package SBINDIR = $(DESTDIR)/usr/sbin -- 2.39.2