aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2026-03-20 23:35:38 +0100
committerMattias Andrée <m@maandree.se>2026-03-20 23:37:25 +0100
commitdb49c933fe34a54947dbc7df381fa1700dc1e74f (patch)
tree7f59c27e6187c8ed4614101916e7bee66a7a0ecf /Makefile
downloadsigsegv-recovery-db49c933fe34a54947dbc7df381fa1700dc1e74f.tar.gz
sigsegv-recovery-db49c933fe34a54947dbc7df381fa1700dc1e74f.tar.bz2
sigsegv-recovery-db49c933fe34a54947dbc7df381fa1700dc1e74f.tar.xz
First commitHEADmaster
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..eb2a03e
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,28 @@
+.POSIX:
+
+CONFIGFILE = config.mk
+include $(CONFIGFILE)
+
+OBJ =\
+ sigsegv-recovery.o\
+ stackoverflow-recovery.o
+
+HDR =
+
+all: $(OBJ:.o=)
+$(OBJ): $(HDR)
+
+.c.o:
+ $(CC) -c -o $@ $< $(CFLAGS) $(CPPFLAGS)
+
+.o:
+ $(CC) -o $@ $< $(LDFLAGS)
+
+clean:
+ -rm -f -- *.o *.a *.lo *.su
+ -rm -f -- $(OBJ:.o=)
+
+.SUFFIXES:
+.SUFFIXES: .o .c
+
+.PHONY: all clean