aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Makefile57
1 files changed, 57 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..ab1b4e4
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,57 @@
+.POSIX:
+
+include mk/before-config.mk
+
+CONFIGFILE = config.mk
+include $(CONFIGFILE)
+
+include mk/after-config.mk
+
+
+OBJ =\
+ anysum.o\
+ patheq.o\
+ openfile.o\
+ hex.o\
+ writeall.o\
+ barrierwait.o\
+ barriersend.o\
+ format_result.o\
+ feedbuffer.o\
+ createbarriergroup.o\
+ killbarriergroup.o\
+ inithashers.o\
+ destroyhashers.o\
+ shiftbuffer.o\
+ calculate.o
+
+HDR =\
+ common.h
+
+all: anysum
+$(OBJ): $(HDR)
+
+.c.o:
+ $(CC) -c -o $@ $< $(CFLAGS) $(CPPFLAGS_FULL)
+
+anysum: $(OBJ)
+ $(CC) -o $@ $(OBJ) $(LDFLAGS_FULL)
+
+install: anysum
+ mkdir -p -- "$(DESTDIR)$(PREFIX)/bin"
+ mkdir -p -- "$(DESTDIR)$(MANPREFIX)/man1/"
+ cp -- anysum "$(DESTDIR)$(PREFIX)/bin/"
+ cp -- anysum.1 "$(DESTDIR)$(MANPREFIX)/man1/"
+
+uninstall:
+ -rm -f -- "$(DESTDIR)$(PREFIX)/bin/anysum"
+ -rm -f -- "$(DESTDIR)$(MANPREFIX)/man1/anysum.1"
+
+clean:
+ -rm -f -- *.o *.a *.lo *.su *.so *.so.* *.gch *.gcov *.gcno *.gcda
+ -rm -f -- anysum
+
+.SUFFIXES:
+.SUFFIXES: .o .c
+
+.PHONY: all install uninstall clean