Compare commits

...

3 Commits

Author SHA1 Message Date
Adrien Gallouët
eee6a22ccd Use strip -x
Signed-off-by: Adrien Gallouët <adrien@gallouet.fr>
2020-02-29 10:06:50 +00:00
Adrien Gallouët
ee2d7a2e07 Update mud
Signed-off-by: Adrien Gallouët <adrien@gallouet.fr>
2020-02-29 09:57:46 +00:00
Adrien Gallouët
e5949b409f Handle cross stripped binary
Signed-off-by: Adrien Gallouët <adrien@gallouet.fr>
2020-02-29 09:34:58 +00:00
2 changed files with 12 additions and 6 deletions

View File

@@ -3,7 +3,6 @@ VERSION := $(shell ./version.sh)
DIST := $(NAME)-$(VERSION) DIST := $(NAME)-$(VERSION)
CC ?= cc CC ?= cc
DESTDIR ?=
prefix ?= /usr prefix ?= /usr
Q := @ Q := @
@@ -18,15 +17,22 @@ FLAGS += -L.static/$(CROSS)/libsodium-stable/src/libsodium/.libs
SRC := argz/argz.c mud/mud.c mud/aegis256/aegis256.c $(wildcard src/*.c) SRC := argz/argz.c mud/mud.c mud/aegis256/aegis256.c $(wildcard src/*.c)
HDR := argz/argz.h mud/mud.h mud/aegis256/aegis256.h $(wildcard src/*.h) HDR := argz/argz.h mud/mud.h mud/aegis256/aegis256.h $(wildcard src/*.h)
ifneq ($(CROSS),)
X = $(CROSS)-
endif
$(NAME): $(SRC) $(HDR) $(NAME): $(SRC) $(HDR)
@echo "$(NAME)" $(Q)$(X)$(CC) $(FLAGS) -o $(NAME) $(SRC) -lsodium
$(Q)$(CC) $(FLAGS) -o $(NAME) $(SRC) -lsodium
$(NAME)-strip: $(NAME)
$(Q)cp $< $@
$(Q)$(X)strip -x $@
.PHONY: install .PHONY: install
install: $(NAME) install: $(NAME)-strip
@echo "$(DESTDIR)$(prefix)/bin/$(NAME)" @echo "$(DESTDIR)$(prefix)/bin/$(NAME)"
$(Q)install -m 755 -d $(DESTDIR)$(prefix)/bin $(Q)install -m 755 -d $(DESTDIR)$(prefix)/bin
$(Q)install -m 755 -s $(NAME) $(DESTDIR)$(prefix)/bin $(Q)install -m 755 $(NAME)-strip $(DESTDIR)$(prefix)/bin/$(NAME)
.PHONY: clean .PHONY: clean
clean: clean:

2
mud

Submodule mud updated: 4a7740f70f...2f966bb365