From 7487b458c22b77f30819e21bb4050c9bbf2e72ac Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Fri, 23 Jan 2026 21:33:05 +0100 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 | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..390ad73 --- /dev/null +++ b/Makefile @@ -0,0 +1,23 @@ +.POSIX: + +CONFIGFILE = config.mk +include $(CONFIGFILE) + +OBJ =\ + stackdump-on-crash.o + +all: stackdump-on-crash + +.c.o: + $(CC) -c -o $@ $< $(CFLAGS) $(CPPFLAGS) + +stackdump-on-crash: $(OBJ) + $(CC) -o $@ $(OBJ) $(LDFLAGS) + +clean: + -rm -f -- *.o *.su stackdump-on-crash + +.SUFFIXES: +.SUFFIXES: .o .c + +.PHONY: all clean -- cgit v1.2.3-70-g09d2