diff options
| author | Mattias Andrée <maandree@kth.se> | 2024-08-25 23:28:25 +0200 | 
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2024-08-25 23:28:25 +0200 | 
| commit | b35cea4b8d82a28994351f3b550e8191ee1d94bf (patch) | |
| tree | 24ce0d8728711e55d5532a57db477b53521f8bc4 /Makefile | |
| download | anysum-b35cea4b8d82a28994351f3b550e8191ee1d94bf.tar.gz anysum-b35cea4b8d82a28994351f3b550e8191ee1d94bf.tar.bz2 anysum-b35cea4b8d82a28994351f3b550e8191ee1d94bf.tar.xz | |
First commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
| -rw-r--r-- | Makefile | 57 | 
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 | 
