From db528a5d90415ec209aec34b1fa8e76850e7a954 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Wed, 13 May 2026 22:18:16 +0200 Subject: First commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- Makefile | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..97aef18 --- /dev/null +++ b/Makefile @@ -0,0 +1,37 @@ +.POSIX: + +CONFIGFILE = config.mk +include $(CONFIGFILE) + +OBJ =\ + how-to-update-process.o + +HDR = + +all: how-to-update-process +$(OBJ): $(HDR) + +.c.o: + $(CC) -c -o $@ $< $(CFLAGS) $(CPPFLAGS) + +how-to-update-process: $(OBJ) + $(CC) -o $@ $(OBJ) $(LDFLAGS) + +install: how-to-update-process + mkdir -p -- "$(DESTDIR)$(PREFIX)/bin" + mkdir -p -- "$(DESTDIR)$(MANPREFIX)/man1/" + cp -- how-to-update-process "$(DESTDIR)$(PREFIX)/bin/" + cp -- how-to-update-process.1 "$(DESTDIR)$(MANPREFIX)/man1/" + +uninstall: + -rm -f -- "$(DESTDIR)$(PREFIX)/bin/how-to-update-process" + -rm -f -- "$(DESTDIR)$(MANPREFIX)/man1/how-to-update-process.1" + +clean: + -rm -f -- *.o *.a *.lo *.su *.so *.so.* *.gch *.gcov *.gcno *.gcda + -rm -f -- how-to-update-process + +.SUFFIXES: +.SUFFIXES: .o .c + +.PHONY: all install uninstall clean -- cgit v1.2.3-70-g09d2